STREAK - Entry Price

Hi,

In Streak strategy, is it possible to get / check the entry price before exit? is there any keyword or indicator which will give the entry / purchase price of that order?

@Streak

@MosesWilliam Yes, you can use Signal Candle for this. Note that Signal Candle is only availabe for exit condition since an entry is the first requirement.

Thank you Krish…
Please help me with one streak exit logic sample.
I tried the signal candle, its only giving me the corresponding candle number OHLC and volume related data and not the exact purchase price or the entry price of the scrip

Singal candle will allow you to access OHLC of the candle on which you executed the trade. not the exact purchase price. You purchase price will be within the High and the low of the signal candle, so it should not make a big big difference.

Example
Entry: Close (0) crosses above EMA 20
Exit: Close lower than Signal Candle(0)

In the above example an exit will be triggered when the Close price falls lower than the candle on which you took an entry.

1 Like

thanks…