NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 23 of 23
Search: Posts Made By: optntdr13
Forum: ThinkOrSwim January 14th, 2012, 09:42 AM
Replies: 25
Views: 41,758
Posted By optntdr13
I know how but I am not sure I understand what...

I know how but I am not sure I understand what you want to do exactly. If you just want to use OHLC as an input for price rather than close, then that wouldn't require a rec variable to do so. Help...
Forum: ThinkOrSwim July 23rd, 2011, 04:34 PM
Replies: 3
Views: 8,294
Posted By optntdr13
From what I just read, you need an additional...

From what I just read, you need an additional moving average added to the plot of the oscillator itself. You can easily do this via:


plot GuppyMMAOscillator = ((Short1 - Long2) / Long2) * 100;...
Forum: ThinkOrSwim July 23rd, 2011, 04:11 PM
Replies: 111
Views: 77,731
Posted By optntdr13
This post has been removed due to a Copyright...

This post has been removed due to a Copyright claim from ThinkScripter
Forum: ThinkOrSwim July 22nd, 2011, 10:42 PM
Replies: 7
Views: 18,005
Posted By optntdr13
Here's the rudimentary off the top of my head...

Here's the rudimentary off the top of my head version, modify to suit.

rec barct = if isnan(barct[1]) or barct[1] < 1 then 1 else if barct[1] > 0 then barct[1] + 1;

addchartlabel(yes,...
Forum: ThinkOrSwim June 19th, 2011, 12:39 PM
Replies: 111
Views: 77,731
Posted By optntdr13
Trying to do what you want with the above script...

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.
Forum: ThinkOrSwim June 6th, 2011, 09:02 PM
Replies: 10
Views: 14,876
Posted By optntdr13
Here's the closest approximation that I am aware...

Here's the closest approximation that I am aware of. I just wrote this really quickly for you so if you want an additional moving average like the real TSV let me know. The formula from Amibroker...
Forum: ThinkOrSwim March 12th, 2011, 10:14 AM
Replies: 14
Views: 13,942
Posted By optntdr13
2 seperate versions / time-frame implementations...

2 seperate versions / time-frame implementations of Time-Segmented Volume turned into a copy of the 3C indicator used by trade-guild.net or at least my versions. They encompass the two crazy lines...
Forum: ThinkOrSwim March 11th, 2011, 02:17 PM
Replies: 14
Views: 13,942
Posted By optntdr13
Do me a favor, draw on this image I am posting...

Do me a favor, draw on this image I am posting below what it is you want to do in the above...

2011-03-11_1414 - optntdr13's library (http://screencast.com/t/egqAsz5SD)
Forum: ThinkOrSwim March 11th, 2011, 11:02 AM
Replies: 111
Views: 77,731
Posted By optntdr13
Thinkscripts

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...
Forum: ThinkOrSwim March 11th, 2011, 10:57 AM
Replies: 434
Views: 309,532
Posted By optntdr13
So, now that Tony fixed my error, how the heck...

So, now that Tony fixed my error, how the heck does one use this anyway? I am going to go back through this while I have some time and play with signals and such to clean it up some. Once I figure...
Forum: ThinkOrSwim March 11th, 2011, 10:51 AM
Replies: 14
Views: 13,942
Posted By optntdr13
At first glance, it looks likme it should work...

At first glance, it looks likme it should work but I will be more than happy to play with it after the trading day to see what I can come up with. I would like to attempt to use it myself for...
Forum: ThinkOrSwim March 3rd, 2011, 09:51 PM
Replies: 14
Views: 13,942
Posted By optntdr13
declare upper; input n = 2.0; input p = open;...

declare upper;
input n = 2.0;
input p = open;
input offset = 1;
input average = yes;

plot zig = reference zigZagpercent("reversal amount" = n, "price" = p);
zig.EnableApproximation();
def...
Forum: ThinkOrSwim March 3rd, 2011, 09:47 PM
Replies: 1
Views: 5,396
Posted By optntdr13
The answer is it depends. It can be scripted if...

The answer is it depends. It can be scripted if you are trading a system with conditions or something to that effect but without some semblance of parameters it would be impossible as far as I know...
Forum: ThinkOrSwim March 3rd, 2011, 09:45 PM
Replies: 9
Views: 24,650
Posted By optntdr13
This code sounds a chime every minute. It is a...

This code sounds a chime every minute. It is a thinkScript study. You can
change the default to whatever time length you want. I set it to one minute in
order to test it. There are only 4 wav...
Forum: ThinkOrSwim March 3rd, 2011, 09:44 PM
Replies: 9
Views: 24,650
Posted By optntdr13
input StartTime = 930; input...

input StartTime = 930;
input Interval_In_Minutes = 15;
input displace = 0.2;

def AftrStartTime = secondsFromTime(StartTime-1)>59;
def StartPoint = !AftrStartTime[1] and AftrStartTime;

def...
Forum: ThinkOrSwim March 3rd, 2011, 09:39 PM
Replies: 9
Views: 24,650
Posted By optntdr13
> input StartTime = 930; > input...

> input StartTime = 930;
> input Interval_In_Minutes = 15;
> input displace = 0.2;
>
> def AftrStartTime = secondsFromTime(StartTime-1)>59;
> def StartPoint = !AftrStartTime[1] and...
Forum: ThinkOrSwim February 23rd, 2011, 09:12 PM
Replies: 10
Views: 13,886
Posted By optntdr13
If you expain in more detail, preferrably in...

If you expain in more detail, preferrably in English:sarcastic: I am happy to help you figure it out.
Forum: NinjaTrader February 23rd, 2011, 09:08 PM
Replies: 21
Views: 7,904
Posted By optntdr13
If you e-mail me, I have sequential in...

If you e-mail me, I have sequential in Ninjatrader and am happy to share what I came up [email protected]
Forum: NinjaTrader February 3rd, 2011, 12:02 PM
Replies: 21
Views: 7,904
Posted By optntdr13
Sure, what I did on my laptop was to associate...

Sure, what I did on my laptop was to associate Windows 7 and .ts files with notepad++. Apparently there exists some type of media file with the same extension though I haven't ever seen a file of...
Forum: NinjaTrader February 1st, 2011, 06:57 PM
Replies: 21
Views: 7,904
Posted By optntdr13
Here is correct thinkscript code for TDPoints,...

Here is correct thinkscript code for TDPoints, hopefully it might help you with Ninja...
Forum: ThinkOrSwim January 27th, 2011, 07:00 PM
Replies: 434
Views: 309,532
Posted By optntdr13
Here's the pivotprofiler version above converted...

Here's the pivotprofiler version above converted to TOS exactly as written. I haven't done much with it yet to jazz it up so feel free to do so and if I have time I will come back to this in a...
Forum: ThinkOrSwim January 24th, 2011, 04:26 PM
Replies: 11
Views: 27,724
Posted By optntdr13
If you post a screenshot I will tell you how to...

If you post a screenshot I will tell you how to fix it without any problem.
Forum: NinjaTrader September 30th, 2010, 09:42 AM
Replies: 11
Views: 21,353
Posted By optntdr13
Attached is TDSeq and TD Setup, compiled from...

Attached is TDSeq and TD Setup, compiled from code at the above link. It isn't exactly correct, still working on fixing it, but perhaps this will help. My first post here fwiw.
Showing results 1 to 23 of 23

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