NexusFi: Find Your Edge


Home Menu

 





Thinkscripts


Discussion in ThinkOrSwim

Updated
      Top Posters
    1. looks_one RedK with 20 posts (15 thanks)
    2. looks_two pbenson68 with 15 posts (1 thanks)
    3. looks_3 RemoWilliams with 5 posts (1 thanks)
    4. looks_4 courier12 with 5 posts (0 thanks)
      Best Posters
    1. looks_one optntdr13 with 8.3 thanks per post
    2. looks_two Silvester17 with 8 thanks per post
    3. looks_3 Massive l with 3 thanks per post
    4. looks_4 RedK with 0.8 thanks per post
    1. trending_up 78,538 views
    2. thumb_up 73 thanks given
    3. group 52 followers
    1. forum 111 posts
    2. attach_file 32 attachments




 
Search this Thread

Thinkscripts

  #81 (permalink)
 vhal 
El Paso Texas USA
 
Experience: Intermediate
Platform: MS and TOS
Trading: /ES
Posts: 2 since Jan 2013
Thanks Given: 2
Thanks Received: 0


optntdr13 View Post
I just wanted to let folks know that if you are looking for something specific, chances are I have it or wrote it and am more than happy to share with any and all. If you would like to have any T.....D......ARK stuff, I have coded almost every single one of them but won't share publically due to the maketstudies goons I will however send via PM or e-mail and am happy to do so.

hi optiontdr13,
Wondering if you might be able to direct me to some TOS thinkscript code. I am wanting to create an index of 11 or 12 different stocks where each one has a different multiplier. The output in 5 min candle format where I can add a couple of SMA would be awesome.
Sincere Thanks.
vhal

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Strategy stop orders partially filled
EasyLanguage Programming
Quantum physics & Trading dynamics
The Elite Circle
Footprint for strategy Builder
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Funded Trader platforms
67 thanks
Self sabotage reframed
15 thanks
Trading with Intuition
15 thanks
GFIs1 1 DAX trade per day journal
14 thanks
Just another trading journal: PA, Wyckoff & Trends
13 thanks
  #82 (permalink)
dsadberry
Gilbert + AZ/USA
 
Posts: 3 since Feb 2014
Thanks Given: 1
Thanks Received: 0

Hello,

brand new guy here. Has anyone developed a screener that screens based on the criteria layed out in Jesse Stine's book, "Insider Buy Superstocks"? I won't go over all the criteria unless requested, but I guess the bigger question is does someone have a robust screener script that can I could use and modify?

Reply With Quote
  #83 (permalink)
v2fire
Diamond bar ca/United States
 
Posts: 1 since Mar 2014
Thanks Given: 0
Thanks Received: 0


I have a question for you optntdr13 If you are still doing coding. Please pm me so we can discuss. thanks

Reply With Quote
  #84 (permalink)
compupix
Long Beach, CA USA
 
Posts: 9 since Jul 2014
Thanks Given: 3
Thanks Received: 0

There are forum rules in place that prevent me from contacting you directly, optntdr13. How do I see the list of scripts you have?

Thanks,
Drew

Reply With Quote
  #85 (permalink)
compupix
Long Beach, CA USA
 
Posts: 9 since Jul 2014
Thanks Given: 3
Thanks Received: 0

Do you have ThinkScript versions of:

CM ATR PercentileRank

CM RSI-2 Strategy Lower Indicator

CM RSI-2 Strategy - Upper Indicators


Thanks,
Drew

Reply With Quote
  #86 (permalink)
Bouaya71
Nador Morocco
 
Posts: 2 since Oct 2014
Thanks Given: 0
Thanks Received: 0

thank you youth

Reply With Quote
  #87 (permalink)
 Gaterz 
Las Vegas, Nevada
 
Experience: Intermediate
Platform: TOS, NinjaTrader
Trading: Stocks, Futuers, Options
Posts: 18 since Apr 2014
Thanks Given: 0
Thanks Received: 0

Can't understand why I have an invalid statement in the last line (BOLD). Help?

#SMART_MO

#

declare lower;

input length = 12;
input price = close;

Assert(length > 0, "'length' must be positive: " + length);

plot Momentum = price - price[length];
plot ZeroLine = 0;

Momentum.SetDefaultColor(GetColor(1));
ZeroLine.SetDefaultColor(GetColor(0));

Momentum.DefineColor("Above", Color.GREEN);
Momentum.DefineColor("Below", Color.RED);
Momentum.AssignValueColor(if Momentum > 0 then Momentum.color("Above") else if Momentum < 0 then Momentum.color("Below"));

Reply With Quote
  #88 (permalink)
 
opts's Avatar
 opts 
NW Florida
 
Experience: Intermediate
Platform: OX and TOS
Trading: Futures Options, Stocks
Posts: 234 since Aug 2012
Thanks Given: 29
Thanks Received: 115

A pre-market scan that will get the close from the last bar during normal trading hours (830CST - 1500CST) and compare that value to the current value during the pre-market hours when you run the scan. The result gives the % difference from the close of the previous day to the current (or most recent) close when you run the scan during the pre market.

The inputs would be % increase or decrease to look for minimum and maximum and the user could filter with the remaining 'stock' scan choices.

Anything like that out there?

Reply With Quote
  #89 (permalink)
 Gaterz 
Las Vegas, Nevada
 
Experience: Intermediate
Platform: TOS, NinjaTrader
Trading: Stocks, Futuers, Options
Posts: 18 since Apr 2014
Thanks Given: 0
Thanks Received: 0


Gaterz View Post
Can't understand why I have an invalid statement in the last line (BOLD). Help?

#SMART_MO

#

declare lower;

input length = 12;
input price = close;

Assert(length > 0, "'length' must be positive: " + length);

plot Momentum = price - price[length];
plot ZeroLine = 0;

Momentum.SetDefaultColor(GetColor(1));
ZeroLine.SetDefaultColor(GetColor(0));

Momentum.DefineColor("Above", Color.GREEN);
Momentum.DefineColor("Below", Color.RED);
Momentum.AssignValueColor(if Momentum > 0 then Momentum.color("Above") else if Momentum < 0 then Momentum.color("Below"));

SOLVED
Didn't have an ending

Reply With Quote
  #90 (permalink)
 courier12 
Mumbai India
 
Experience: None
Platform: TradeStation
Trading: Forex
Posts: 39 since Nov 2014
Thanks Given: 58
Thanks Received: 10


Hi:

Has anyone coded the TWAP indicator in ThinkorSwim? TOS has a built in VWAP but not TWAP.

Fat Tails coded it in Ninja Trader and the Ninja indicator description can be found here



I am looking only for the Daily TWAP and not the SD bands around it.

Any help would be great!

Thank you,

Reply With Quote




Last Updated on March 25, 2019


© 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