Quote:
|
Originally Posted by prasxz
Thanks for those indi...but can you explain about room up , room dn and maximum stop losses..sorry
===================
Forex Indicators Collection
|
This should make those settings a little clearer, the Daily indicator was used in the original thread for the TSR Daily Average System, from memory there is a fairly detailed explanation of the settings in that thread somewhere near to the start.
RAvg = (R1+R5+R10+R20)/4;
low0 = iLow(NULL,PERIOD_MN1,0);
high0 = iHigh(NULL,PERIOD_MN1,0);
RoomUp = RAvg - (Bid - low0)/Point;
RoomDown = RAvg - (high0 - Bid)/Point;
StopLoss_Long = RoomUp/Risk_to_Reward_ratio;
SL_Long = Bid - StopLoss_Long*Point;
StopLoss_Short = RoomDown/Risk_to_Reward_ratio;
SL_Short = Bid + StopLoss_Short*Point;
cja