Skip to content

Position Property

Summary

Gets or sets the position being opened.

Signature

1
public Position Position {get;}

Return Value

Position

Declaring Type

cAlgo.API.PositionOpenedEventArgs

Examples

1
2
3
4
5
 private void PositionsOnOpened(PositionOpenedEventArgs args)
 {
     var position = args.Position;
     Print("Position opened at {0}", position.EntryPrice);
 }

Last update: March 23, 2023