Issues With On Demand Trading

I run into this issue quite often in Paper Trading, which doesn't perform much better than OnDemand... The more complex the code the more likely orders won't fire... My issues have been more with Conditional Orders than simple Limit and Stop orders in Paper Trading... There is very little that can be done to resolve this issue unless we all complain to the Support Desk and even then a resolution may or may not be worked out... I've totally given up on using OnDemand...
 
Last edited by a moderator:

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

When copying formula from live trading platform to simulated platform theres about 500,000 more share difference in simulated platform. Why would that be?

input startTime = 400;
input endTime = 929;
def startCounter = SecondsFromTime(startTime);
def endCounter = SecondsTillTime(endTime);
def targetPeriod = if startCounter >= 0 and endCounter >= 0 then 1 else 0;
rec volumeTotal = if targetPeriod and !targetPeriod[1]
then volume
else if targetPeriod
then volumeTotal[1] + volume else volumeTotal[1];
AddLabel(yes, "Today's Premarket: " + volumeTotal, Color.GRAY);
 
Given there is no way of knowing what steps that you took; it is not possible to determine which of those steps were wrong.

Call Support:
https://usethinkscript.com/threads/how-to-contact-tos-support-for-thinkorswim.11520/
Make sure that you have available, more information than you posted here.

There is a chance that they won't provide support for paper trading.
You are better off testing your strategies on one share of a penny stock with live trading.

Paper trading was created to provide clients with the general idea of what is available on the ToS platform.
The delays and limitations on on-demand make is a poor vehicle for testing your trading.

@Tradeknowledge @Zchef
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
333 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