I will code your EAs and Indicators for no charge | Page 4052 | Forex Factory

HeroPoker_HeroPoker扑克_HeroPoker德扑圈官网

Attachments: I will code your EAs and Indicators for no charge

I will code your EAs and Indicators for no charge

can someone write down how to get value of yesterday high and yesterday low? thanks
Inserted Code
  double Hi = iHigh(NULL,1440,1);
  double Lo = iLow(NULL,1440,1);
  
  string YestHigh = DoubleToString(Hi,_Digits);
  string YestLow  = DoubleToString(Lo,_Digits);
Trade what you see not what you hope
Attached Image (click to enlarge)
Click to Enlarge

Name: ww.PNG
Size: 23 KB

Attached File(s)
File Type: mq4 KK_MA_ATR_Lines_v2.mq4   6 KB | 140 downloads

Attached File(s)
File Type: mq5 KK_MA_ATR_Lines_v2.mq5   9 KB | 89 downloads
{quote} ??? {image}
hi

Thank you so much for your support. I've resolved the issues and it's working perfectly. I have one more request. Is it possible to enable an audible alarm and warning when the price reaches the pivot point?
hi
Is there an MT5 version of this indicator?
Attached File(s)
File Type: ex4 Predicted_TP&SL_Labels_v1.3.ex4   18 KB | 134 downloads
can someone write down how to get value of yesterday high and yesterday low? thanks
Inserted Code
string symbol = _Symbol;
ENUM_TIMEFRAMES Tf = PERIOD_D1;
int Bar = 1;
double Hi = iHigh(symbol, Tf, Bar);
double Lo = iLow(symbol, Tf, Bar);
.ex4/.ex5 files cannot be fixed or converted, or modified
hi Is there an MT5 version of this indicator? {file}
What's the purpose of this?
How do we predict TP?
If you have some way or tool to find the potential TP, you use that tool and corelate it with an EA for execution.
.ex4/.ex5 files cannot be fixed or converted, or modified
KK ManualTrader Pro v5.1 Professional manual trading panel for MT4/MT5. Features: One-click Buy/Sell buttons with adjustable lot size (+/- buttons or manual input) Percentage-based SL/TP - automatically applied to new positions Trailing Stop (%) - follows price by percentage, with step control Hidden Trailing - broker doesn't see your trailing SL, closes at market Auto Break-Even - moves SL to entry + offset when profit % reached Manual Break-Even button - one click to secure profits Instant Reverse - close position and open opposite direction (same...
Thank you for sharing, could you tell me please how do I use the hotkeys? I have been trying by changing instant reverse to 1, I press it and it doesn磘 really do anything
{quote} hi Thank you so much for your support. I've resolved the issues and it's working perfectly. I have one more request. Is it possible to enable an audible alarm and warning when the price reaches the pivot point?
Attached File(s)
File Type: mq5 FiboPiv_Alerts.mq5   13 KB | 70 downloads
.ex4/.ex5 files cannot be fixed or converted, or modified
{quote} What's the purpose of this? How do we predict TP? If you have some way or tool to find the potential TP, you use that tool and corelate it with an EA for execution.
Its purpose is to detect open trades and display live the figures that will occur when the TP and SL are reached.
{quote} Its purpose is to detect open trades and display live the figures that will occur when the TP and SL are reached.
You can see that by hovering the cursor over the TP line, in the tooltip.
Same for the SL line.
Attached Image (click to enlarge)
Click to Enlarge

Name: Zrzut ekranu (10).png
Size: 26 KB
.ex4/.ex5 files cannot be fixed or converted, or modified
{quote} Thank you for sharing, could you tell me please how do I use the hotkeys? I have been trying by changing instant reverse to 1, I press it and it doesn磘 really do anything
If you input 1, it doesn't mean that the hotkey is the 1 key.
Unfortunatelly, Sagat provided a method for people who know more than average.
Those are Win32API key codes.
https://asawicki.info/nosense/doc/de...key_codes.html
And you can see that key code 1 doesn't even exist...
BTW. Totally average user unfriendly solution...
.ex4/.ex5 files cannot be fixed or converted, or modified
Does anyone in this community have a universal Expert Advisor (EA) for MT5? All the ones I've seen are for MT4. Thanks in advance.
Hi everyone,

First of all I want to thank everyone for your support always, blessings follow you. I just want to ask, I抦 trying to start to become a coder, I don抰 know is there any book or where can I start learning from. I want something that will teach me like I抦 a kid. I want to code in MQL5 and maybe sometimes MQL4 but I抦 more of the MT5. Thank you in advance all.
..
Does anyone in this community have a universal Expert Advisor (EA) for MT5? All the ones I've seen are for MT4. Thanks in advance.
I have seen some commercial ones.
The problem with this type of EA for MT5 is that in order to have a universal indicator EA, we need to use iCustom().
And in MQL5 we need to create a handle in OnInit() and then do CopyBuffer() in OnCalculate().
Inserted Code
int handle = iCustom(symbol, TF, "Indicator_Name", ...);
CopyBuffer(handle, buffer, start_index, whole_array, storing_array);
This method is highly unreliable and often returns Failed to copy rates data, error: 4401.
This error can also be at the level of the indicator, itself.
In MT4, the iCustom() is done in a different way.
Attached Image (click to enlarge)
Click to Enlarge

Name: 2026-01-31_165826.png
Size: 9 KB
That's why it is always much better for MT5 to create a specific EA with the specific indicator coded directly in the EA, and not by importing data.
.ex4/.ex5 files cannot be fixed or converted, or modified
KK ManualTrader Pro v5.1 Professional manual trading panel for MT4/MT5. Features: One-click Buy/Sell buttons with adjustable lot size (+/- buttons or manual input) Percentage-based SL/TP - automatically applied to new positions Trailing Stop (%) - follows price by percentage, with step control Hidden Trailing - broker doesn't see your trailing SL, closes at market Auto Break-Even - moves SL to entry + offset when profit % reached Manual Break-Even button - one click to secure profits Instant Reverse - close position and open opposite direction (same...
You may find this useful:
Attached File(s)
File Type: mq5 Win32API_KeyCodes_ENUM_Template.mq5   4 KB | 70 downloads

The enum can be used in MQL4 just as well.
.ex4/.ex5 files cannot be fixed or converted, or modified
Hi everyone, First of all I want to thank everyone for your support always, blessings follow you. I just want to ask, I抦 trying to start to become a coder, I don抰 know is there any book or where can I start learning from. I want something that will teach me like I抦 a kid. I want to code in MQL5 and maybe sometimes MQL4 but I抦 more of the MT5. Thank you in advance all.
https://www.mql5.com/en/forum/459094
.ex4/.ex5 files cannot be fixed or converted, or modified
[quote=jeanlouie;13415736]{quote} file updated with same name - local time is udpated on loading too file updated with same name - local time as candle hover time with optional offset {file}

Hello ,
Hope your day is going well. Please can we get the MT5 version of the indicator.

Thanks to you or any one that will be kind enough to assist.
[quote=daughtry;15560090]
{quote} file updated with same name - local time is udpated on loading too file updated with same name - local time as candle hover time with optional offset {file} Hello , Hope your day is going well. Please can we get the MT5 version of the indicator. Thanks to you or any one that will be kind enough to assist.
Please any coder that has the source code or something similar that can convert to MT5 VERSION would be appropriated.

http://www.ojas-gujarat-gov-in.com/thread/...-for?page=1904

Thanks
Attached File(s)
File Type: ex4 Candle_Info_target_window_v1.1.ex4   30 KB | 61 downloads
{quote} Please any coder that has the source code or something similar that can convert to MT5 VERSION would be appropriated. http://www.ojas-gujarat-gov-in.com/thread/...-for?page=1904 Thanks {file}
https://www.mql5.com/en/market/produ...ource=External
.ex4/.ex5 files cannot be fixed or converted, or modified