Deal did not open

Bug info:

1 Like

@aressanch ! kindly request your team to look into it. Guide me if something is wrong in my understanding. I used Stochastic RSI on Daily timeframe and used the option of “Crossing Up”. Not sure if it was used correctly but as per my understanding the Stochastic was already crossed up so it should have triggered.

knock knock, anyone who can respond ?

Problem related to multiple restarts. Higher timeframe not received udpates when bot started, instead waiting for the current candle to be closed.
Will be fixed on next update on Monday.

please explain what you mean by multiple restarts ?

I can see in the logs, there were restarts either bot direct restart or settings changes that leads to restart.

the indicators triggers after closing of current candle or already closed previous candle on any timeframe (for instance weekly)?

In your case higher timeframe indicators (like 1d, 1h,4h) should trigger when bot started and bot should listen to 15m timeframe indicators and be ready to perform an action when they all met.
Due to problem, on first run the beaviour is working, but on next is not, i.e. waiting for the 1h, 4h, 1d to be closed before performing an action after 15m trigger.

ok, i hope it will be resolved by monday. Last query …making new with bot same settings will help or not?

Yes, should help.

1 Like

https://app.gainium.io/bot/677a0e10e93f522c0b59c82d?a=6690&aid=share-bot&share=be0679b8-0452-45c8-95e3-2e0ab65b0412

Kindly if you can check this one as i believe all conditions have been met as i made the strategy as per current conditions but still not triggering.

kindly if someone in the team could guide?

I just delpoyed a fix few hours ago. Should be ok since today.
Let me know if not.

still not triggering. tried most recent conditions even

ok let me check it.

1 Like

Not sure about which bot you are talking about.
I checked this one Gainium app
It has 1w, 1d and 4h timeframes. 1d and 1w results were loaded at bot start, becuase they are highest. 4h indicators waited for the candle to be closed to process new results, because they are lowest.

I checked this bot Gainium app
The same config. The bot was started during service update, next 4h candle that was processed was at 20:00 UTC.

Note: 4h, 1d, 1w is always UTC time, not your local time.

i faced the issue with both the bots but from your reply i understand that the lowest TF candle (4 hour in my case) needs to be closed in order to trigger the bot. So i might have to add another lower timeframe indicator (i.e. SMA lower than 100 in 15 minutes timeframe) to get the strategy running ?

Usually RSI lower than 100 (always true) used in desired timeframe, like 15m or 5m.

i put value = 1 and now it has triggered (in 15minutes TF, RSI indicator< 100)

If all conditions of the highest time frame are met, this opens exactly the next candle of this time frame for checks of the conditions with lower time frames. If the conditions of the next lower time frame are met as well before the last candle of the same timeframe is reached, this opens the next candle of the same time frame and so on.

Example with 4h, 2h, 15min, 1min conditions

Notice that I am not certain about the edge cases where lower time frame conditions become true but require the next higher time frame conditions to be true again as well to enable the next column for lower time frame checks or triggering.

  • 4h candle = false → No trigger

  • 4h candle = true → Enable next 4h candle:

    • 1st 2h candle = true → Enable next 2h candle:

      • 1st 15min candle = true → Enable next 15 min candle:

      • 3rd 15min candle = true:

        • 1st 1min candle = true:

        • 14th 1min candle = true:

          • Next 1min candle: Trigger
        • 15th 1min candle → No next candle in 15min candle:

          • next 15min candle = true:

            • Next 1min candle: Trigger (Is that so?)
          • next 15min candle = false:

            • No Trigger (Is that so?)
      • 4th 15min candle → No next candle in 4h candle:

        • next 4h candle = true, next 2h candle = true:

          • Check 1min for trigger (Is that so?)
        • next 4h candle = true, next 2h candle = false:

        • next 4h candle = false:

          • No checks and triggers
    • 2nd 2h candle = true → No next candle in 4h candle:

      • next 4h candle = true:

        • Next 2h candle: Check 15min and 1min candles (Is that so?)
      • next 4h candle = false:

        • No checks and trigger (Is that so?)