Page 1 of 1

How to open a trade (strategy) when the price increases more than 1 Percent in a day?

Posted: Tue Mar 22, 2022 10:22 pm
by EveryDayBetter
How can I define, that the strategy opens a trade, when the price increases more than 1 Percent in a day?

Re: How to open a trade (strategy) when the price increases more than 1 Percent in a day?

Posted: Wed Mar 23, 2022 12:54 pm
by Verrattitanesque
(close - open)/close * 100

if close < open

-(close-open)/close *100

I think it's the main idea

Re: How to open a trade (strategy) when the price increases more than 1 Percent in a day?

Posted: Thu Mar 24, 2022 8:10 pm
by EveryDayBetter
Thank you very much.