Perseverance will pay
REAL ME Return This Month:
-46.8%
Coding robots and indicators in C# for no charge (cTrader API) 181 replies
Oanda MT4 - Indicators and EAs not showing 1 reply
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Need help to code EAs for MT4 and MT5 2 replies
Disliked{quote} Do you think this can help you possibly but i doubts you will not be able to understand and manage such a extremely extended indicator -Although there are 2 more signal lines that you can adjust/bring on your desired setup extern string TimeFrame = "Current time frame"; extern int OsMaPrice = 0; extern int FastMa = 12; extern int SlowMa = 26; extern int SignalMa = 9; extern int MaMode = 11; extern bool divergenceVisible = true; extern bool divergenceOnValuesVisible = true; extern bool divergenceOnChartVisible = true; extern color...
Ignored
Dislikedi have one doubt. is this indicator updating at open time of market because when i see after open market the lines are same and i change the time frame normally i watch M15 to M30 or M5 and back to M15 the lines are get changed.. i added newbar option too.. but guess not working... can any one look at this and if find any issues please be corrected... to know this diff please attach into chart time frame any.. let it run.. and next day after open watch the lines they are same only... just change the time frame to other one and back to same watching...Ignored
DislikedHello coders, What's wrong with this indicator? Why are the SL and TP values changing? Where's the error? {image} {file} {file}Ignored
Disliked{quote} Hello BlueRain, glad to have you back. Please, this indicator has option to alert on current candle but its not working, help to make it alert immediately the arrow shows up on chart, Thanks in advance.{file}Ignored
Disliked{quote} Tickvalue is not fixed. Since your indicator is displaying in profit/loss based on tickvalue, it will change consistently. double tick_val=MarketInfo(OrderSymbol(),MODE_TICKVALUE);//GetTickValue double tp_dist=(OrderOpenPrice()-OrderTakeProfit())/MarketInfo(OrderSymbol(),MODE_POINT);//CalcDistance double tp_val=(tp_dist*tick_val)*OrderLots();//CalcValue pTP+=tp_val;Ignored
Disliked{quote} I noticed that this change in the SL TP values displayed by the indicator only happens in pairs where the quote currency is different from the deposit currency of the account. In the gif of the previous post where I showed the change happening the pair was NZDCHF and the currency of the account is USD. The author of the indicator informed me that this is normal. I opened an position on NZDUSD and saw that the values did not change.Ignored
Disliked{quote} It needs exact times to be present, commodities have different session times to fx and to eachother, so the starting/end times of a new day, or from day to day may be different. There can also be several hours missing, I have written stuff to handle that before, but I wont be rewriting this. You can use this to draw std dev lines from a main linear regression line, drag the end points where ever you want, it'll read whatever's there. It's like the inbuilt std dev channel except this has more dev channels in one. LR_wSTD_Deviations_Channel_Drag...Ignored
Disliked{quote} thanks... that static & stick feature is very much needed...Ignored
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
Disliked{quote} Ok I saw it, all 3 signal types were using the timing of the completed close candle ie previous candle for the on-close option. Seems fixed now. {file}Ignored
Disliked{quote} ...change the alert method from E-MAIL to POP-UP notification in this indicator...Ignored
DislikedBlueRain and other coders I am testing this EA gotten from this forum. The only problem with it is that its lots size is not executing correctly. It is always of a fixed value of 0.1, even when you change it to like 0.01 or higher value, the order placed is always 0.1. Please can you adjust the EA to place the correct order. Thanks {file}Ignored
Disliked{quote} it has condition of if(lot<0.1) lot=0.1; I commented out. {file}Ignored