The manual indicates trading won't happen until the lookback threshold has been reached. Is there a way to check the look back and return out of a function if the lookback threshold hasn't been reached?

For example

void run()
// Set look back

I'd like to validate the lookback here and return if it's not ready.
// Consider trading logic

// Enter/exit trade.

thanks.