SAR Color Filling Right zone – indicator MetaTrader 5

SAR Color Filling Right zone
The idea of the indicator Additional style DRAW_FILLING to the iSAR indicator (Parabolic SAR, SAR). Filling the area between the price and the iSAR indicator. Additionally (on the right side) a rectangle is drawn – this rectangle repeats the fill area. Rice. 1.SAR Color Filling Right zone SAR Color Filling Right zone – indicator MetaTrader 5

Trailing Stop by Fixed Parabolic SAR – EA MetaTrader 5

Fixed Parabolic SAR
Modify to allow direct specification of the starting point of the Parabolic SAR. Parameters Trailing Mode ・・・ None / Trailing Fixed / Trailing Fixed Parabolic SAR calcuration part of Parabolic SAR bool CSampleExpert::LongModifiedEx(void) { bool res=false; //— check for trailing stop if(m_trailing_max < m_last_bar.high) { double tp=m_position.TakeProfit(); double sl=m_position.StopLoss(); //— calcurate ParabolicSAR m_trailing_max = m_last_bar.high; … Read more