I need plot current open position (ticks, sl distance, etc) with a label
Could I do this from addon (so I have the position info in realtime)?
If I do this
private void OnPositionUpdate(object sender, PositionEventArgs e)
{
// Output the new position
Draw.TextFixed(this, "Info", "Position info", TextPosition.BottomLeft);
If I do this from indicator (OnBarUpdate), how can I get the Position info?
Thks

Comment