Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
We need to download all the bars the platform allows us.
Look at attached chart, disable the two buttons, take out a_Nina and then press shift and F12 on your keyboard. Histo will tell you the number of bars it is counting. Go back as far as the platform lets you do so.
hi dear nina ,usually what you use to close with good profit the position?
And you sometimes close and reverse?.thanks a lot,i really appreciate your works.
hi dear nina ,usually what you use to close with good profit the position?
And you sometimes close and reverse?.thanks a lot,i really appreciate your works.
Hi!
I do not close and reverse if I have not a signal to do it.
Look at the r/r ratio of the signal. Your stop loss should tell you that. I do not have any fixed strategy to exit.
We need to download all the bars the platform allows us.
Look at attached chart, disable the two buttons, take out a_Nina and then press shift and F12 on your keyboard. Histo will tell you the number of bars it is counting. Go back as far as the platform lets you do so.
Nina
nina, it didnt work...the bars to count number does not increase when i hold shift+F12
i got an idea how to avoid fals data from broker but i cant write it in mql4 (i would need at least all day).
If we have bad data like neuimex on 24.08 at 11AM where showed usdchf something below 1 ---- 0.352436 and we know that is impossible why dont we just put few lines in a_nina code where it will check if diferance betwen average of past 10 or whatewher bars is more up or down from next bar by let say 500 pips;if yes then we dont count this bar in the calculation of the indiators insted if necessery we can take average of past few good bars for calculation and go on untill end of data
or just to compare high and low of previus (good bar)
lets put it in some kind of basic language for better understunding
if low[i]-low[i+1] > 0.500 or high[i]-high[i+1]>0.500 then
low[i]=low[i+1],high[i]=high[i+1],close[i]=close[i+1]
end if
........
like this we will have smaller mistake in indicator calculations