Midpoint of candle

manojborle

Well-Known Member
#1
How can we mark midpoint of a candle on a candle in a chart ?
 

manojborle

Well-Known Member
#3
Thanks, I am trying to put a small dot at the midpoint in blue colour.
I tried changing your code with shapesmallcircle, it is not working.
How can I do it ?
 

manojborle

Well-Known Member
#5
Code:
Hl2 = ( H + L ) / 2;
zordershift = 2;
Plot( Hl2, "",  colorBlue, styleDots | styleNoLine | styleNoLabel, Null, Null , 0, zordershift  );
Now it is showing @ midpoint, will see how it works realtime, Thanks again
 
#6
Manoj ji,

Would u share the logic behind Midpoint of every candle ??? R u using it for intraday trailing stoploss???

Any strategy.. if possible please share ?


One Query for Trash
I need Midpoint for previous day Candle as Line rather then Dots (Small line).

Help would be appreciated.

Thanx you
 

manojborle

Well-Known Member
#7
Manoj ji,

Would u share the logic behind Midpoint of every candle ??? R u using it for intraday trailing stoploss???

Any strategy.. if possible please share ?
I am learning Al Brooks PA for trading and midpoint of candle can help to find who owns the Bar.
 

mastermind007

Well-Known Member
#9
Thanks, I am trying to put a small dot at the midpoint in blue colour.
I tried changing your code with shapesmallcircle, it is not working.
How can I do it ?
Candle with Bindi
Code:
	midpoint=(H+L)/2;
	Plot(midpoint,"", colorBlack, styleDots | styleNoLabel | styleNoLine, Null, Null, 0, 1);
 
Last edited:

Similar threads