Help with conditions

I have made the below condition in my strategy for divergence in open interest, but unfortunately not getting trades, is the indicator supporting or not?? there are no results in any given timeframe, plz check and guide.

Period min(5, Open interest(-1) ) higher than Period min(10, Open interest(-11) )

Hi @Mahindra

Kindly note that you are trying to run conditions on Open Interest on equity stocks. Open interest is the total number of outstanding derivative contracts, such as options or futures that have not been settled for an asset, thus the given indicator is supported only on derivates contracts and not on equity. Therefore, you are getting the message as “No trades Happened”.

Do run the strategy on derivative contracts and it shall work fine.

The image is attached below for reference:

Hope this clarifies the doubt.

Help me understand this function. When using the Period function, does it consider the period in days or as a number of candles?

I have been using the copy-and-paste feature, which is really time-saving when the condition is already created in some of the existing strategies. However, can you explain the use case of the disable function?

Hi @NithinKS

Kindly note that the Period Max function will fetch the Maximum value from the specified period (i.e. the period here referred to as the number of candles).

Say for instance you use the condition “Close(0) higher than Period Max(10, High(-1)) ”, The function will first refer to the maximum high in the last 10 candles and if the current candle close is higher than the highest high in last 10 candles, a trigger will be generated. Similarly, the Period Min function also follows the same logic.

Hope this clears the doubt.

Hello @Mahindra

Let’s say you’re developing a strategy that includes five distinct conditions using various indicators, the disable condition can be utilized to assess each indicator’s impact on the strategy’s performance.

By disabling one of the five conditions, you can evaluate how each condition affects the strategy’s effectiveness. This approach helps identify which indicators are enhancing the strategy and which ones may not be contributing as effectively.

Hope this helps

I want to exit the trade after the next candle closes
and one more condition is exit after the 2nd candle close

Hi @SheetalGhorpade

You can write this in the Exit condition
Close(0) higher than 0

This will give you a trigger after the current candle closes and in the backtest, the entry will be triggered at the open price of the next candle.

Please note that currently your requirement i.e. to exit after 2 or any other later candles cannot be implemented in Streak.

Hope this helps.

I am looking for a scanner, where I can scan for options in BankNifty whose delta is between 0.5 to 0.8.

Hi @samuel-7

Kindly note that we have created the scanner that matches your requirements, refer to the image below:

Hope this helps.

Maximum how many conditions can written in a single strategy or scanner?

Hi @samuel-7 You can write a maximum of 30 conditions in a strategy or scanner. If there are more than 30 conditions you will receive the following error.
image

How to create conditions to fetch for a sudden volume boost in stocks?

Hi @samuel-7

Do refer to the volume burst scanner on the free platform through the below link:

You can log in to the platform using Kite and modify it as needed.

Hope this helps.

Please give me a feature where I can just select the trades and download all the Order Logs at once. Currently, it’s tiresome, to download them individually.

Hi @NithinKS

All you have to do is select the contracts you would like to want the order log for and just use the “Download Order Logs” option. You can refer to the image below:

Hope this helps.

I intend to buy at a certain time and sell at a certain time. is it possible no indicators used!!

is it possible, if yes plz guide here

Thanks in Advance

Hello @Ankitajadhav

You can create a time-specific entry-exit condition using the “Candle Time” function.

To learn more about the function, refer to the links below:
https://help.streak.tech/indicators/#candle-time

Hope this helps.

Kindly help me create a scanner that fetches stocks with increasing volume and shows the bearish trend in price.

Hi @samuel-7

Refer to the below conditions shared as per your requirement, you can create the same in your account with the necessary changes:

The above scanner will check for stocks whose in past 5 candles the volume is increasing and the price is falling.

Hope this helps.