Guest User

Untitled

a guest
Aug 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. double HighValue=High[iHighest(NULL,PERIOD_M30,MODE_HIGH,3,1)];
  2. double LowValue=Low[iLowest(NULL,PERIOD_M30,MODE_LOW,3,1)];
  3.  
  4. string High_Price= "High Price: " + ( DoubleToStr(HighValue,6));
  5. string Low_Price= "Low Price: " + ( DoubleToStr(LowValue,6));
  6.  
  7.  
  8.  
  9.  
  10.  
  11. ObjectSetText("HighValue", High_Price, bal_fontsize, "Arial", TextColor);
  12.  
  13.  
  14. ObjectSetText("LowValue", Low_Price , bal_fontsize, "Arial", TextColor);
Add Comment
Please, Sign In to add comment