VWAP Standard Deviation Bands for ThinkorSwim

@BenTen
How can i create a strategy and back test with this script, when price cross and close above and below 2nd deviation to go long and short, thanks in advance

# Define strategy def longEnterPrice = if price crosses above LowerBand2 then price else double.nan; def longExitPrice = if close crosses below LowerBand2 or price == VWAP then close else double.nan; AddOrder(OrderType.BUY, longEnterPrice, 100, color.green, "Long Entry"); AddOrder(OrderType.SELL, longExitPrice, 100, color.red, "Long Exit"); # Define short strategy def shortEnterPrice = if price crosses below UpperBand2 then price else double.nan; def shortExitPrice = if price crosses above UpperBand2 or price == VWAP then price else double.nan; AddOrder(OrderType.SELL_SHORT, shortEnterPrice, 100, color.red, "Short Entry"); AddOrder(OrderType.BUY_TO_COVER, shortExitPrice, 100, color.green, "Short Exit");

This is what I came up with so far, Im getting errors
Sorry, Didn't realize that this indicator plots a higher timeframe on a lower aggregation chart.
Think about the repainting:
For example, if you have a 30-min overlay on a five-min chart. There is no way of predicting at what price that 30min candle is going to close UNTIL it closes.
When the 30min candle finally closes, only then can it repaint the previous 6 bars with the 30min close price.
Read more:
https://usethinkscript.com/threads/...d.-,Multi-Timeframe,-REPAINTING-type Behavior

The repainting from this indicator prevents us from being able to get any reliable backtesting results.
We don't allow repainting backtesting scripts to be posted to this forum because viewers would be misled by the results.
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
340 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top