NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 43
Search: Posts Made By: devildriver6
Forum: ThinkOrSwim May 6th, 2019, 12:33 AM
Replies: 4
Views: 2,869
Posted By devildriver6
What you need to do is make two sets of lines. ...

What you need to do is make two sets of lines.
The first set only exists during the period of time you DO want clouds.
The other set exists only when you DO NOT want clouds.
Both are essentially...
Forum: ThinkOrSwim May 3rd, 2019, 11:11 AM
Replies: 0
Views: 920
Posted By devildriver6
Has Anyone Figured Out Partial Exits w/ Thinkscript Strategies?

Like the title says - looking to see if anyone has figured out how to write the code to partially exit out on the strategies.
Also - how in the hell do you plot the entry price properly?
Forum: ThinkOrSwim March 21st, 2018, 12:38 PM
Replies: 2
Views: 5,795
Posted By devildriver6
To use higher period MA's on lower period charts,...

To use higher period MA's on lower period charts, you can do the following....
The BOLD piece is what changes the period it's applied as.
The line length will be as long as the period is.... for...
Forum: ThinkOrSwim March 21st, 2018, 12:16 PM
Replies: 18
Views: 11,027
Posted By devildriver6
For everyone following this thread, I figured out...

For everyone following this thread, I figured out a more "elegant" way to do this, which is now correct.
This will reset daily, regardless of timeframe (as long as the timeframe is lower than the...
Forum: ThinkOrSwim March 21st, 2018, 11:38 AM
Replies: 1
Views: 1,184
Posted By devildriver6
What ya got?

What ya got?
Forum: ThinkOrSwim February 16th, 2018, 11:22 AM
Replies: 18
Views: 11,027
Posted By devildriver6
Yeah, not sure about Traderbites, but that's the...

Yeah, not sure about Traderbites, but that's the mid price.
Do you know how his is calculated?
Forum: ThinkOrSwim February 13th, 2018, 08:24 AM
Replies: 4
Views: 2,897
Posted By devildriver6
So it's all the same RSI calculation, just...

So it's all the same RSI calculation, just different lengths?
If so, that's easy to accomplish...


declare lower;

input length1 = 14;
input length2 = 9;
input length3 = 5;
input...
Forum: ThinkOrSwim February 8th, 2018, 09:28 AM
Replies: 5
Views: 6,011
Posted By devildriver6
Why not just create a script for it. input...

Why not just create a script for it.

input MyLevel = 2000.00;
input Above = 2.25;
input Below = 3.75;

plot Level = MyLevel;

plot AboveLevel = MyLevel + Above;
plot BelowLevel = MyLevel -...
Forum: ThinkOrSwim October 9th, 2017, 01:47 PM
Replies: 3
Views: 1,925
Posted By devildriver6
This is NOT possible currently in Thinkorswim.

This is NOT possible currently in Thinkorswim.
Forum: ThinkOrSwim September 27th, 2017, 08:40 AM
Replies: 2
Views: 3,365
Posted By devildriver6
Whichever value you put first is the "top" value....

Whichever value you put first is the "top" value.
Second is the "bottom" value.

So, whichever color you place first after that displays when top is top and bottom is bottom.
If those flip...
Forum: ThinkOrSwim September 4th, 2017, 03:13 PM
Replies: 1
Views: 2,850
Posted By devildriver6
You can't use secondary aggregations in scans.

You can't use secondary aggregations in scans.
Forum: ThinkOrSwim September 4th, 2017, 03:11 PM
Replies: 1
Views: 1,604
Posted By devildriver6
To plot variable timeframes, you have to adjust...

To plot variable timeframes, you have to adjust the coding as follows....

first, add adjustable TF....
then, adjust "close" to show that TF....
any coding that goes into the adjustable TF has to...
Forum: ThinkOrSwim July 14th, 2017, 03:46 PM
Replies: 2
Views: 2,910
Posted By devildriver6
Here's a basic one... set opacity to 0. ...

Here's a basic one... set opacity to 0.


input pricePerRowHeightMode = {AUTOMATIC, default TICKSIZE, CUSTOM};
input customRowHeight = 1.0;
input timePerProfile = {CHART, MINUTE, default HOUR,...
Forum: ThinkOrSwim July 14th, 2017, 03:41 PM
Replies: 3
Views: 3,119
Posted By devildriver6
Here's the multiple timeframe stoch code.... ...

Here's the multiple timeframe stoch code....

http://i65.tinypic.com/6dr7f7.jpg


declare lower;

input over_bought = 80;
input over_sold = 20;
input KPeriod = 8;
Forum: ThinkOrSwim June 30th, 2017, 02:21 PM
Replies: 16
Views: 20,784
Posted By devildriver6
I have something like this.... Records the last...

I have something like this.... Records the last 50 swing highs and lows.
Took over 2500 lines of brute force coding to get this accomplished in TOS though.
It took A LOT of work to get this done,...
Forum: ThinkOrSwim April 9th, 2017, 06:20 PM
Replies: 8
Views: 1,799
Posted By devildriver6
Shoot me the details on Skype if you'd like and...

Shoot me the details on Skype if you'd like and I'll look them over and see what we can do.
username: JohnBoyFtw1
Forum: ThinkOrSwim April 9th, 2017, 05:48 PM
Replies: 8
Views: 1,799
Posted By devildriver6
Opening bell gap, good. I already have that logic...

Opening bell gap, good. I already have that logic written.
So, now all I need is X, and can backtest 20 years on the daily in TOS.
See how your plans stack up.

Also, are we holding and closing...
Forum: ThinkOrSwim April 9th, 2017, 05:43 PM
Replies: 8
Views: 1,799
Posted By devildriver6
Okay - so let's talk about X. I can write this...

Okay - so let's talk about X.
I can write this fairly easily. Just need logical parameters.

So, gap up >= X then long else short, close EOD?

Something like that, right?

Also, are we...
Forum: ThinkOrSwim March 27th, 2017, 11:12 AM
Replies: 6
Views: 5,429
Posted By devildriver6
You bet. Granted, I already had most of the...

You bet.
Granted, I already had most of the logic, and yours was sound.
Just needed some minor things added to it.

Hope it helps.
Forum: ThinkOrSwim March 27th, 2017, 11:00 AM
Replies: 6
Views: 5,429
Posted By devildriver6
Sure. Here you go. VA set to default HOUR....

Sure.
Here you go.

VA set to default HOUR. Label shows when above or below VA.
Arrows are your logic.


input pricePerRowHeightMode = {AUTOMATIC, default TICKSIZE, CUSTOM};
input...
Forum: ThinkOrSwim March 27th, 2017, 12:03 AM
Replies: 1
Views: 1,234
Posted By devildriver6
You get it figured out?

You get it figured out?
Forum: ThinkOrSwim March 26th, 2017, 11:59 PM
Replies: 6
Views: 5,429
Posted By devildriver6
Shoot... I might be able to help.

Shoot... I might be able to help.
Forum: ThinkOrSwim February 25th, 2017, 05:10 PM
Replies: 4
Views: 5,912
Posted By devildriver6
Okay, so, not to be rude, but this all seems...

Okay, so, not to be rude, but this all seems unnecessarily complicated.
Let me try to understand what you're intentions are here.....

You're trying to do what exactly? Compare the current price...
Forum: ThinkOrSwim November 16th, 2016, 08:46 PM
Replies: 1
Views: 3,233
Posted By devildriver6
If I'm reading this correctly, you simply want an...

If I'm reading this correctly, you simply want an adjustable aggregation?
Try adding this...

input Period = aggregationPeriod.Month;

...then replacing the current non-adjustable aggregation...
Forum: ThinkOrSwim August 23rd, 2016, 08:48 PM
Replies: 2
Views: 1,655
Posted By devildriver6
Can you elaborate on this? It's fairly simple,...

Can you elaborate on this?
It's fairly simple, but is this a lower study, or an upper study?

How is it used, is basically hat I'd need to know?
Showing results 1 to 25 of 43

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 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