NexusFi: Find Your Edge


Home Menu

 





What are your outstanding TOS Requests?


Discussion in ThinkOrSwim

Updated
      Top Posters
    1. looks_one TonyB with 9 posts (6 thanks)
    2. looks_two joe11 with 4 posts (0 thanks)
    3. looks_3 john2000 with 3 posts (1 thanks)
    4. looks_4 growex with 2 posts (1 thanks)
      Best Posters
    1. looks_one Silvester17 with 6 thanks per post
    2. looks_two rhouser with 4 thanks per post
    3. looks_3 TRIPLETOP with 1 thanks per post
    4. looks_4 TonyB with 0.7 thanks per post
    1. trending_up 50,739 views
    2. thumb_up 35 thanks given
    3. group 42 followers
    1. forum 69 posts
    2. attach_file 10 attachments




 
Search this Thread

What are your outstanding TOS Requests?

  #31 (permalink)
 VeloxPro 
Israel
 
Experience: Master
Platform: colocated proprietary, IB for LFT, TOS and TS for options and scripted strategies
Trading: ES, NQ, GC, SI, CL
Posts: 22 since Aug 2013
Thanks Given: 2
Thanks Received: 7

I would like them to show the current theoretical price of an option based on B&S or some other model. It can help when you trade options with large spreads. Today they only provide future theoretical price which is based on the current mid price and user inputs on passage of time and underlying price. It is also very inaccurate.

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
REcommedations for programming help
Sierra Chart
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
ZombieSqueeze
Platforms and Indicators
How to apply profiles
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
31 thanks
Just another trading journal: PA, Wyckoff & Trends
26 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
23 thanks
GFIs1 1 DAX trade per day journal
18 thanks
  #32 (permalink)
Yakito
Buenos Aires, Argentina
 
Posts: 47 since Jun 2013
Thanks Given: 39
Thanks Received: 4

Hello,

I would love to be able to backtest and optimize strategies, I really think this is a must.

Currently the ability to test strategies by running reports is really slow and lacks many features.

Also I would add the possibility of calling outside sources from the thinkscript code, this will help connect thinkscript to many other languages and platforms.

Reply With Quote
Thanked by:
  #33 (permalink)
 
Bermudan Option's Avatar
 Bermudan Option 
Chicago, Illinois
 
Experience: Beginner
Platform: TradingView
Broker: ThinkOrSwim
Trading: Forex, Stock & Options
Posts: 675 since May 2011
Thanks Given: 846
Thanks Received: 471



VeloxPro View Post
I would like them to show the current theoretical price of an option based on B&S or some other model. It can help when you trade options with large spreads. Today they only provide future theoretical price which is based on the current mid price and user inputs on passage of time and underlying price. It is also very inaccurate.

Would using the Analyze tab resolve this? At the bottom they gives you the option to change the Model used, and updates in real time

Visit my NexusFi Trade Journal Reply With Quote
  #34 (permalink)
 joe11 
chapel hill, nc
 
Experience: Intermediate
Platform: NinjaTrader, ToS
Posts: 36 since May 2010
Thanks Given: 25
Thanks Received: 4

Hello, I have TOS newbie question -
I am trying to get a pseudo daily chart of ES in TOS.
I would like to plot only data between 9:30-16:00ET as each "daily" bar on a multi day chart.
Please enlighten me. TIA!

Reply With Quote
  #35 (permalink)
 
rmejia's Avatar
 rmejia 
Puerto Rico
 
Experience: Intermediate
Platform: thinkorswim
Broker: TD Ameritrade
Trading: Options
Posts: 379 since Oct 2010
Thanks Given: 3,614
Thanks Received: 441


joe11 View Post
Hello, I have TOS newbie question -
I am trying to get a pseudo daily chart of ES in TOS.
I would like to plot only data between 9:30-16:00ET as each "daily" bar on a multi day chart.
Please enlighten me. TIA!

Style - Settings - Futures - Show Extended-Hours Trading Session


Reply With Quote
Thanked by:
  #36 (permalink)
 
quantismo's Avatar
 quantismo 
Waco TX.
 
Experience: Advanced
Platform: retired ...maybe
Trading: anything with the slightest edge..
Posts: 242 since Jul 2011
Thanks Given: 335
Thanks Received: 176

I have had a think or swim account for about 6 years and I know there is a ton more bells and whistles in in that any other platform. I hate! hate! hate! that you cant customizes the active trader widow so you can see the bid ask columns better. All the energy spent in putting a stupid mine sweeper game into think or swim and you cant even customize things so you can see them. I can only use the black background with think or swim as my eyes get strained with the lighter color backgrounds. If you use the black background you can barely see the only the one and only dark orange block that is non customizable that is the last price sold on the active trader. The one and only reason I use Think or swim is because they have direct in and out ACH banking
For active traders Ninjatrader blows Think or Swim out of the water.. but no Ninja Brokers have in out ACH ...

Quantismo

Reply With Quote
  #37 (permalink)
 
john2000's Avatar
 john2000 
Chicago, IL
 
Experience: Intermediate
Platform: Ninjatrader, TOS
Broker: Amp Futures/CQG/IB
Trading: ES, ZB, ZN, Forex
Posts: 162 since Jan 2010
Thanks Given: 244
Thanks Received: 59

Can someone translate the attached Ninjatrader code to TOS, (was originally by Jabeztrading)? it Creates the Cyan, Magenta and Blue boxes in the image. I tweaked it a bit, but not sure how to translate it to TOS.

Thanks,


John

Attached Files
Elite Membership required to download: MJS_CongestionBox.zip
Reply With Quote
Thanked by:
  #38 (permalink)
 growex 
Trubchevsk
 
Experience: Beginner
Platform: tos
Trading: stocks
Posts: 61 since May 2011
Thanks Given: 40
Thanks Received: 79

Thank you for the indicator code John.
It is not possible to convert it to tos code in full details....
Here's the piece of code that plots upper and lower boundaries on the chart..

 
Code
                            
declare upper;
input CongestionZoneBars 2;
def UpDownpattern =  ( (Close[1] > Open[1]) or (Close[1] >= Open[1] && Close[1]>(((High[1]-Low[1])*0.5)+Low[1]))  ) && Close[0] < Open[0]; 
def   DownUppattern = ( (Close[1] < Open[1]) or (Close[1] <= Open[1] && Close[1]<(((High[1]-Low[1])*0.5)+Low[1]))  ) && Close[0] > Open[0];
def  Upperboundary = if UpDownpattern then highest(HighCongestionZoneBars) else  Upperboundary[1];
plot ub = if upperboundary == 0 then high else upperboundary;
def Lowerboundary = if DownUppattern then lowest (LowCongestionZoneBars) else Lowerboundary[1];
plot lb = if lowerboundary == 0 then low else lowerboundary

Follow me on Twitter Reply With Quote
Thanked by:
  #39 (permalink)
 
john2000's Avatar
 john2000 
Chicago, IL
 
Experience: Intermediate
Platform: Ninjatrader, TOS
Broker: Amp Futures/CQG/IB
Trading: ES, ZB, ZN, Forex
Posts: 162 since Jan 2010
Thanks Given: 244
Thanks Received: 59


growex View Post
Thank you for the indicator code John.
It is not possible to convert it to tos code in full details....
Here's the piece of code that plots upper and lower boundaries on the chart..

 
Code
                            
declare upper;

input CongestionZoneBars 2;
def UpDownpattern =  ( (Close[1] > Open[1]) or (Close[1] >= Open[1] && Close[1]>(((High[1]-Low[1])*0.5)+Low[1]))  ) && Close[0] < Open[0]; 
def   DownUppattern = ( (Close[1] < Open[1]) or (Close[1] <= Open[1] && Close[1]<(((High[1]-Low[1])*0.5)+Low[1]))  ) && Close[0] > Open[0];
def  Upperboundary = if UpDownpattern then highest(HighCongestionZoneBars) else  Upperboundary[1];
plot ub = if upperboundary == 0 then high else upperboundary;
def Lowerboundary = if DownUppattern then lowest (LowCongestionZoneBars) else Lowerboundary[1];
plot lb = if lowerboundary == 0 then low else lowerboundary

growex,

Thanks for looking at this. I loaded the code you sent, into TOS, and got the following. Is this what you get as well?


Reply With Quote
  #40 (permalink)
robstar
denver/USA
 
Posts: 1 since Apr 2015
Thanks Given: 0
Thanks Received: 0


im trying to figure out to add time parameters to the monkey bar study in TOS. Im trying to add the collapsed monkey bar study on the extension of an expanded monkey bar chart with the after hours price action, but only have the collapsed monkey bar study show the price action from 09:30 - 16:15.
thanks ahead of time for any help or suggestions.

Reply With Quote




Last Updated on October 6, 2020


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts