I'm using a calculation of a 5 bar average for my target, and ig it's possible I would like to be able to show the number in pips automaticly. The problem right now is that the different markets has different decimals. I added a multiplier, but is it possible to let the efs do this in auto. I was thinking something like this:
if(decimals = 2){
Target = Sum/5 * 100}
if(decimals = 4){
Target = Sum/5 * 10000}
etc.
Is this possible? An if it is, how do I apply it. Would be very happy if someone could help me here.
Regards
Karfhans
if(decimals = 2){
Target = Sum/5 * 100}
if(decimals = 4){
Target = Sum/5 * 10000}
etc.
Is this possible? An if it is, how do I apply it. Would be very happy if someone could help me here.
Regards
Karfhans
Comment