Hi, I have the tickvalue indicator and I want it to tell me the number of micro lots I need to use to be trading at 1 pound per pip.
I am not a coder but have got as far as the following.
Text = "Tick Value = " + DoubleToStr(MarketInfo(Symbol(), MODE_TICKVALUE)/10, 4) +
"\n"+
"Spread = " + DoubleToStr(MarketInfo(Symbol(), MODE_SPREAD), 0) +
"\n"+
"1 pound per pip = " + DoubleToStr(MarketInfo(Symbol(), MODE_TICKVALUE), 4);
How do I go about adding the simple calculation of (1 divided by mode_tickvalue)? This would tell me how many micro lots I need to open to be working at 1 pound per pip.
Thanks.
I am not a coder but have got as far as the following.
Text = "Tick Value = " + DoubleToStr(MarketInfo(Symbol(), MODE_TICKVALUE)/10, 4) +
"\n"+
"Spread = " + DoubleToStr(MarketInfo(Symbol(), MODE_SPREAD), 0) +
"\n"+
"1 pound per pip = " + DoubleToStr(MarketInfo(Symbol(), MODE_TICKVALUE), 4);
How do I go about adding the simple calculation of (1 divided by mode_tickvalue)? This would tell me how many micro lots I need to open to be working at 1 pound per pip.
Thanks.