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 77,263 views
    2. thumb_up 73 thanks given
    3. group 52 followers
    1. forum 111 posts
    2. attach_file 32 attachments




 
Search this Thread

Thinkscripts

  #1 (permalink)
 optntdr13 
Glyndon, Maryland, USA
 
Experience: Advanced
Platform: TOS
Trading: options
Posts: 24 since Sep 2010
Thanks Given: 6
Thanks Received: 49

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.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Are there any eval firms that allow you to sink to your …
Traders Hideout
Exit Strategy
NinjaTrader
NexusFi Journal Challenge - April 2024
Feedback and Announcements
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Ninja Mobile Trader VPS (ninjamobiletrader.com)
Trading Reviews and Vendors
 
  #2 (permalink)
 Billo 
Nashville
 
Experience: Advanced
Platform: Ninja and trade station
Trading: 30 year bonds
Posts: 6 since Jul 2010
Thanks Given: 0
Thanks Received: 1

Do you have a working copy of Murrey Math and or Harmonic trading patterns for Think or Swim Or could you program them if i gave you a working copy programed in E-signal or ninja trader ?

Advise
billo

Reply With Quote
Thanked by:
  #3 (permalink)
 nemo77 
Woodbridge, VA
 
Experience: Beginner
Platform: TOS
Trading: ES
Posts: 5 since May 2011
Thanks Given: 3
Thanks Received: 3



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. Can you please pm me of email me. I wanted to see if you have the TSV indicator from Worden. Thanks.

Reply With Quote
Thanked by:
  #4 (permalink)
times5
Vacovuer, Canada
 
Posts: 3 since Jun 2011
Thanks Given: 3
Thanks Received: 4


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.

I am a beginner trader and searching for a program I need to put on chart and market watch page with TOS.

The program I have been looking for are automatic Fibonacci lines that shows 0% at open price and 100% at ATR(20), and -100% at -100% with all Fibonacci lines between. I am also looking for a formula that I can display Fibonacci number on the market watch page.

I don't know if it is right place to ask this question since I have just registered this forum, and new. That would be great if you give me some advice where I can find this programing.

Thanks!!

Toshi

Reply With Quote
Thanked by:
  #5 (permalink)
 
Massive l's Avatar
 Massive l 
OR/USA
Legendary /NQ Trader
 
Experience: None
Posts: 2,129 since Mar 2011
Thanks Given: 1,859
Thanks Received: 5,106

Here's auto fibs from prospectus.
Maybe you can code it to your liking and share.

# Automatic Opening Range and Fibonacci Levels
# By Prospectus @ Read the Prospectus
# Inspired by Trader-X @ Trader-X...views from a distorted mind.
#
# This Thinkscript is designed to plot the OR high, low,
# 50% fib retrace, and fib extensions for the current day.
# This will only work correctly on time-based charts,
# where the OR timeframe is divisible by the bar period
# e.g. 30 minute OR, 10 min bars. An extra fib extension
# may be used if desired to create a target zone.
#
def na=double.nan;
#
# Define time that OR begins (in hhmm format,
# 0930 is the default):
#
input ORBegin = 0930;
#
# Define time that OR is finished (in hhmm format,
# 10:00 is the default):
#
input OREnd = 1000;
#
# Input first and second fib extension levels
# (default 1.382, 1.621):
#
Input FibExt1=1.382;
Input FibExt2=1.621;
#
# Show Today only? (Default Yes)
#
input ShowTodayOnly={"No", default "Yes"};
def s=ShowTodayOnly;
#
# Show Second fib extension? (Default No)
#
input ShowFibExt2={default "No", "Yes"};
def sf2=ShowFibExt2;
#
# Create logic for OR definition:
#
Def ORActive = if secondstilltime(OREnd)>0 AND secondsfromtime(ORBegin)>=0 then 1 else 0;
#
# Create logic to paint only current day post-open:
#
def today=if s==0 OR getday()==getlastday() AND secondsfromtime(ORBegin)>=0 then 1 else 0;
#
# Track OR High:
#
Rec ORHigh = if ORHigh[1]==0 or ORActive[1]==0 AND ORActive==1 then high else if ORActive AND high>ORHigh[1] then high else ORHigh[1];
#
# Track OR Low:
#
Rec ORLow = if ORLow[1]==0 or ORActive[1]==0 AND ORActive==1 then low else if ORActive AND low<ORLow[1] then low else ORLow[1];
#
# Calculate OR width:
#
Def ORWidth = ORHigh - ORLow;
#
# Calculate fib levels:
#
Def fib_mid = (ORHigh+ORLow)/2;
Def fib_ext_up1 = ORHigh + ORWidth*(FibExt1 - 1);
Def fib_ext_down1 = ORLow - ORWidth*(FibExt1 - 1);
Def fib_ext_up2= ORHigh + ORWidth*(FibExt2 - 1);
Def fib_ext_down2 = ORLow - ORWidth*(FibExt2 - 1);
#
# Define all the plots:
#
Plot ORH=if ORActive OR today<1 then na else ORHigh;
Plot ORL=if ORActive OR today<1 then na else ORLow;
Plot FibMid=if ORActive OR today<1 then na else fib_mid;
Plot FibExtUp1=if ORActive OR today<1 then na else fib_ext_up1;
Plot FibExtDown1=if ORActive OR today<1 then na else fib_ext_down1;
Plot FibExtUp2=if ORActive OR today<1 OR sf2<1 then na else fib_ext_up2;
Plot FibExtDown2=if ORActive OR today<1 OR sf2<1 then na else fib_ext_down2;
#
# Formatting:
#
ORH.setdefaultcolor(color.green);
ORH.setStyle(curve.Long_DASH);
ORH.setlineweight(3);
ORL.setdefaultcolor(color.red);
ORL.setStyle(curve.Long_DASH);
ORL.setlineweight(3);
FibMid.setdefaultcolor(color.gray);
FibMid.setStyle(curve.SHORT_DASH);
FibMid.setlineweight(3);
FibExtUp1.setdefaultcolor(color.green);
FibExtUp1.setStyle(curve.SHORT_DASH);
FibExtUp1.setlineweight(2);
FibExtDown1.setdefaultcolor(color.red);
FibExtDown1.setStyle(curve.SHORT_DASH);
FibExtDown1.setlineweight(2);
FibExtUp2.setdefaultcolor(color.green);
FibExtUp2.setStyle(curve.SHORT_DASH);
FibExtUp2.setlineweight(1);
FibExtDown2.setdefaultcolor(color.red);
FibExtDown2.setStyle(curve.SHORT_DASH);
FibExtDown2.setlineweight(1);

Visit my NexusFi Trade Journal Reply With Quote
  #6 (permalink)
 Moore1937 
Tampa, Florida, USA
 
Experience: Advanced
Platform: NinjaTrader, Thinkorswim
Trading: fututes
Posts: 11 since Jun 2011
Thanks Given: 0
Thanks Received: 2


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.


I was wondering if you have indicators similar to those presented on indicatorwarehouse.com developed for ninjatrader??

Reply With Quote
Thanked by:
  #7 (permalink)
times5
Vacovuer, Canada
 
Posts: 3 since Jun 2011
Thanks Given: 3
Thanks Received: 4

Massive,

I really appreciate your quick reply. This is similar to what I want, and I input this data and tried to modify, but I couldn't.

What I do manually is like this.

step1. Open daily chart and add and subtract ATR(14) number from open price and draw ATR lines which would be Fibonacci +100% and -100% level.
step2. Draw Fibonacci lines from open price to ATR line both upside and downside.
step3. Change to 3 min charts and do day trading.

I do day trade based on this lines. For example if stock breaks 236 level or another level, and buy right away, then look at candle formation, price pattern, and trend to decide to sell or hold. However, I don't have time to draw each lines while trading. I know some day traders set up automated Fibonacci lines with CQG, but I would like to do same thing with TOS.

If you have any idea how to program this and share, that would be awesome. I am trying to study and modify same time.

Thanks for taking time to read my thread.

TOSH

Attached Thumbnails
Click image for larger version

Name:	1.png
Views:	635
Size:	23.2 KB
ID:	41420   Click image for larger version

Name:	2.png
Views:	528
Size:	29.4 KB
ID:	41421   Click image for larger version

Name:	3.png
Views:	524
Size:	30.5 KB
ID:	41422  
Reply With Quote
Thanked by:
  #8 (permalink)
 optntdr13 
Glyndon, Maryland, USA
 
Experience: Advanced
Platform: TOS
Trading: options
Posts: 24 since Sep 2010
Thanks Given: 6
Thanks Received: 49

Trying to do what you want with the above script won't get you very far. I'll try to help, give me a day or so.

Started this thread Reply With Quote
Thanked by:
  #9 (permalink)
RemoWilliams
Pine Bluff , Arkansas
 
Posts: 8 since Jun 2011
Thanks Given: 1
Thanks Received: 4

I was wondering if you could make something like Pace of the tape described here? My friend has it on his pc for ninja trader and it looked like it was worth playing with. Id be more than appreciative . thanks

Sorry I dont have the rank to send a link lol. Its described in the ninja traders section though. I had to repost this.

Reply With Quote
Thanked by:
  #10 (permalink)
 
Massive l's Avatar
 Massive l 
OR/USA
Legendary /NQ Trader
 
Experience: None
Posts: 2,129 since Mar 2011
Thanks Given: 1,859
Thanks Received: 5,106


optntdr13 - I was wanting to know if you could code an indicator that shows the difference
between green body and red body candles for the last x days? Thanks, sir!

Hope you have a happy 4th!

Visit my NexusFi Trade Journal Reply With Quote
Thanked by:




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