In Simple English
(A) : iSAR(0.008,11,0) is Parabolic SAR Indicator 0.008 STEP, 11 Maximum
(B) : iSAR(0.005,11,0) is Parabolic SAR Indicator 0.005 STEP, 11 Maximum
(C) : (iMA(27,MODE_LWMA,0) is Linear Weighted Moving Average of 27 on Closing price
(D) : (iSTO(27,8,27,MODE_SMA,MODE_MAIN,0) is Stochastic Oscillator Indicator, %K = 27, %D = 8, Slowing = 27, on Simple Moving Average, Main Indicator line Line)
(E) : iSTO(27,8,27,MODE_SMA,MODE_SIGNAL,0) is Stochastic Oscillator Indicator, %K = 27, %D = 8, Slowing = 27, on Simple Moving Average, Signal Indicator line Line)
==========================================
Therefore IF No trade is open then
IF A<C AND B< C AND D>E AND D>35 AND D<45
then Open a Long Trade TP 57, SL 126
Slomo
===================================
HAVE A LOOK AT ATTACHED PIC
If TotalTrades < 1 then
(
//EUR%
If (iSAR(0.008,11,0) < iMA(27,MODE_LWMA,0) ) and
(iSAR(0.005,11,0) < iMA(27,MODE_LWMA,0) ) and
(iSTO(27,8,27,MODE_SMA,MODE_MAIN,0) > iSTO(27,8,27,MODE_SMA,MODE_SIGNAL,0))and
(iSTO(27,8,27,MODE_SMA,MODE_MAIN,0)> 35) and (iSTO(27,8,27,MODE_SMA,MODE_MAIN,0)< 45)
then
//sl126 profit 57 pips
SetOrder(OP_BUY,1,Ask,3,Ask-126*Point,Ask+57*Point,HotPink);
exit;
)