sorry guys just worked out how to do it 🙂
Hey man!
I don´t know if it´s IG australia that have so few days in 100´000 bars or what it is but this is how it looks to me with a little bit longer test frame. and 0.6p spread.
Hi T-man, Thanks heaps for that……. I was hoping that it would do a little better but thems the breaks. Think I will try some tweaks and again appreciate your help.
No worries mate. FYI you can´t have a 4p stop in Eur/usd. 5p is minimum.
Beware – extremely over-optimized code
// Definition of code parameters
DEFPARAM CumulateOrders = True // Cumulating positions deactivated
// Conditions to enter long positions
indicator10 = Average[200](close)
indicator22 = Average[100](close)
c10 = (indicator10 > indicator22[1])
indicator1 = CALL bolcam(close)
c1 = (indicator1 < 0)
indicator2 = RSI[14](close)
c2 = (indicator2 < 45)
indicator3 = RSI[18](close)
indicator4 = BollingerDown[50](RSI[18](close))
c3 = (indicator3 < indicator4[1])
indicator5 = RSI[20](close)
indicator6 = BollingerDown[10](RSI[20](close))
c4 = (indicator5 CROSSES OVER indicator6)
IF c10 and c1 AND c2 AND c3 AND c4 THEN
BUY 1 CONTRACT AT MARKET
ENDIF
// Stops and targets
SET STOP pLOSS 20
SET TARGET pPROFIT 10
HI Guys,
IT’s seems working well , but will be interesting to test before april , when EUR/USD is in bearish trend … ?
Just a quick add to this: should the cumulated orders be set on true and not false?
Hi. Yes it seems to perform better (at least when I have ran it live) with it set to true