General question for any pine-script strategy.
For example from the documentation: https://www.tradingview.com/pine-script-docs/en/v4/essential/Strategies.html#a-simple-strategy-example
//@version=4
strategy("test")
if bar_index > 4000
strategy.entry("buy", strategy.long, 10, when=strategy.position_size <= 0)
strategy.entry("sell", strategy.short, 10, when=strategy.position_size > 0)
plot(strategy.equity)
Is it possible to have this strategy executed automatically at the indicated time through the TradingView platform?
This is for an equity strategy so I assume I'd have to have an equity supporting broker (TradeStation as opposed to OANDA or AMP) but even just automated paper trading execution?
Right now, I'm guessing that instead I might need to re-create my strategy through QuantConnect or Quantopian for that to work.
You can use alerts to send signals, and do whatever you please with the signals. They've improved the alerts functionality recently, so it's definitely doable.