- Search Metals Mine
- eess replied Dec 7, 2021
Updated to newer v1.10 for Fibo Levels for Daily, Weekly Monthly to solve initial loading bug. Get from post 32 above.
My Room 5 - MT5 Indicator
- eess replied Dec 7, 2021
Update to newer version 1.10 to solve bug relating to not able to get history data on first loading.If you have downloaded v1.00, pls download this newer version. Fibo Levels for Daily, Weekly Monthly v1.10 (MT5) - Able to toggle show/hide for each ...
My Room 5 - MT5 Indicator
- eess replied Dec 6, 2021
I noticed you have posted this type of qn across multiple threads. To answer simply, if it comes with source code i.e. in mq4/mq5 format, then it is unlikely to "expire", because it doesn't make sense to put expiry date when people can just remove ...
Experiments - while waiting for an order to get closed
- eess replied Nov 26, 2021
esSetSymbol v1.00 MT5 (Symbol Changer with some extra features) - Can mark the pairs you want to monitor with color by pressing Keyboard Key (See picture below)
My Room 5 - MT5 Indicator
- eess replied Nov 24, 2021
I will just help you with some psudocode as I don't have time to write detailed coding, hope you can understand. for(int i=100; i>=1; i--) { //Get the MA average values iMA()......... //Check if the moving averages satisfy your criteria if(MA0>MA1 ...
Need Help : Merge 2 Loops into 1 Loop
- eess replied Nov 20, 2021
Sorry I don't have mt5 version, only the MT4. But looks like other websites have, you try google "overlay chart indicator mt5".
My Room 5 - MT5 Indicator
- eess replied Nov 16, 2021
Updated Color Fibo (esColorFibo) to v1.10 to solve some bugs. Please refer to above post 24 for the new version.
My Room 5 - MT5 Indicator
- eess replied Nov 16, 2021
Update: Uploaded a newer version v1.10 which solves bugs when changing timeframes. If you have downloaded v1.00 earlier, please download again. Color Fibo v1.10 (MT5) - Can only put one instance on the same chart. - Able to change the Fibo Levels ...
My Room 5 - MT5 Indicator
- eess replied Nov 14, 2021
Buttons to change timeframes, zoom in/out, and auto scale, only for current chart v1.00
My Room 5 - MT5 Indicator
- eess replied Nov 12, 2021
There's a new update to the "Volume By Price for MT4" indicator, for those who got it free earlier, you can install the latest update.
Auction Market Theory and Market Profile
- eess replied Nov 7, 2021
Update: Remove Master-Slave mode and simplify to just one indicator for scaling all charts. See post 21 above.
My Room 5 - MT5 Indicator
- eess replied Nov 7, 2021
Update: Remove Master-Slave mode and simplify to just one indicator. Only for MT5, this will allow All Opened Charts to be automatically scaled. Only need to put this indicator on ONE chart and all the opened charts will be controlled. To disable ...
My Room 5 - MT5 Indicator
- eess replied Nov 4, 2021
Move the stop loss first before closing the trade: OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() + breakevenPips, OrderTakeProfit(), 0,clrNONE); OrderClose(OrderTicket(), OrderLots()/2, Bid, 3, clrNONE); BEFORE: AFTER:
Help - EA run amok!
- eess replied Nov 4, 2021
Putting 5s delay there would delay the execution of the rest of the code.You can also try to move stoploss first before doing the OrderClose to see if it can solve better. The other way to do it without having to put a delay would be to set a global ...
Help - EA run amok!
- eess replied Nov 4, 2021
Did you check if the stoploss was moved successfully to breakeven by checking the result of the return value of OrderModify? What I would do to debug this would be to print the values out like stoploss, open price etc to verify which part of the ...
Help - EA run amok!
- eess replied Nov 4, 2021
When half of the order was closed, the order is still open, so as long as the order is still open and the criteria is met (Bid-OrderOpenPrice()>=tp1), it will keep executing that code, that's why it keeps halving your lots on every tick until it ...
Help - EA run amok!
- eess replied Nov 1, 2021
Only applicable for the chart which this indicator is placed on Keyboard Left Key: Change Timeframe down Keyboard Right Key: Change Timeframe Up Keyboard Up Key: Zoom in Keyboard Down Key: Zoom out
My Room 5 - MT5 Indicator
- eess replied Oct 30, 2021
Thanks Kette, its amazing that this is free, very pro....
Auction Market Theory and Market Profile