NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 37
Search: Posts Made By: cbritton
Forum: ThinkOrSwim May 30th, 2011, 04:56 PM
Replies: 434
Views: 310,716
Posted By cbritton
NT has downward facing triangles. See post #1 for...

NT has downward facing triangles. See post #1 for a screenshot.

Regards,
-C
Forum: ThinkOrSwim September 14th, 2010, 06:44 PM
Replies: 434
Views: 310,716
Posted By cbritton
Maybe I'm confused about what your concerns are. ...

Maybe I'm confused about what your concerns are.

What I mean is that the original intent of this thread was about the conversion process for the ninja trader VPA indicator to ToS. Along the way,...
Forum: ThinkOrSwim September 14th, 2010, 03:43 PM
Replies: 434
Views: 310,716
Posted By cbritton
The problem is trying to quantify certain...

The problem is trying to quantify certain conditions. Like you mentioned before, what determines short, medium and long term trends? If that's subject to someone trying to implement this indicator,...
Forum: ThinkOrSwim September 8th, 2010, 09:33 PM
Replies: 434
Views: 310,716
Posted By cbritton
I'll let snowcloud do the updates since he's...

I'll let snowcloud do the updates since he's taking over the development :)

Your links to the discussion about each bar type is good to have for this thread. Users would be wise to keep those...
Forum: ThinkOrSwim September 8th, 2010, 07:10 PM
Replies: 434
Views: 310,716
Posted By cbritton
This point was brought up on previous posts and...

This point was brought up on previous posts and not just with this particular item. There's a lot of questionable items the author put in the NT version. Obviously, it means something to him or...
Forum: ThinkOrSwim September 7th, 2010, 01:28 PM
Replies: 434
Views: 310,716
Posted By cbritton
From the source code: # Trend Definitions...

From the source code:


# Trend Definitions
rec fiveDaysSma = compoundValue(5, Average(close, 5)[0], Double.NaN);
def LongTermTrendSlope = LinearRegressionSlope(price = fiveDaysSma, length =...
Forum: ThinkOrSwim August 25th, 2010, 04:18 PM
Replies: 434
Views: 310,716
Posted By cbritton
Here would be fine I guess. I sent a message to...

Here would be fine I guess. I sent a message to Big Mike suggesting a document download section categorized by trading paradigm (i.e. VSA, market profile, price action, etc.) for easy navigation. I...
Forum: ThinkOrSwim August 24th, 2010, 03:13 PM
Replies: 434
Views: 310,716
Posted By cbritton
I compared the code between the EL and ToS...

I compared the code between the EL and ToS version and I found a number of discrepencies. I detailed some of these below. There may be others.

The EL code defines the range as the high-low. The...
Forum: ThinkOrSwim August 24th, 2010, 11:49 AM
Replies: 434
Views: 310,716
Posted By cbritton
The original code for the NT version came from a...

The original code for the NT version came from a posting on the NT forums which eventually got posted on this site. I converted this code to ToS but, being new to VSA as well, I could not confirm the...
Forum: ThinkOrSwim August 21st, 2010, 07:22 PM
Replies: 434
Views: 310,716
Posted By cbritton
I have both. I will take a look later this week....

I have both. I will take a look later this week.

Regards,
-C
Forum: ThinkOrSwim August 18th, 2010, 03:52 PM
Replies: 434
Views: 310,716
Posted By cbritton
Thanks for the BetterVolume indicator. Can you...

Thanks for the BetterVolume indicator. Can you add this to the ThinkorSwim download section? It would be a nice addition.

I did a quick pass on the easy language version of the point and figure....
Forum: ThinkOrSwim August 17th, 2010, 04:05 PM
Replies: 434
Views: 310,716
Posted By cbritton
Maybe open = low is too stringent? Where does...

Maybe open = low is too stringent? Where does Williams mention that the up thrust bar must be a gravestone doji?



The colors were a bit odd in the NT version and I tried to match them as...
Forum: ThinkOrSwim August 16th, 2010, 08:42 AM
Replies: 434
Views: 310,716
Posted By cbritton
Not that I'm aware of. Regards, -C

Not that I'm aware of.

Regards,
-C
Forum: ThinkOrSwim August 10th, 2010, 09:41 AM
Replies: 434
Views: 310,716
Posted By cbritton
I think isWideSpreadBar is supposed to indicate a...

I think isWideSpreadBar is supposed to indicate a larger than normal spread of the bar, but you are right, there's nothing to indicate that there was a substantial up move to begin with. The problem...
Forum: ThinkOrSwim August 4th, 2010, 10:28 AM
Replies: 434
Views: 310,716
Posted By cbritton
I checked the VPA code in the NT download section...

I checked the VPA code in the NT download section on futures.io (formerly BMT). This is how the noDemandBar and noSupplyBar are defined:


// ndbar, nsbar
noDemandBar =...
Forum: ThinkOrSwim August 4th, 2010, 10:06 AM
Replies: 434
Views: 310,716
Posted By cbritton
Amost. The LRS is not computing 40 bars...

Amost.

The LRS is not computing 40 bars worth of approximation using 5 bars from the SMA. Rather, each value in the 40 position array is the avareage computed by the 5 bar SMA at that time.

The...
Forum: ThinkOrSwim August 2nd, 2010, 10:18 AM
Replies: 434
Views: 310,716
Posted By cbritton
WildersAverage returns an array. The [0] at the...

WildersAverage returns an array. The [0] at the end of the line indicates that the assignment to avgSpread should be the value at the 0 index of the array. It's innocuous however since...
Forum: ThinkOrSwim July 30th, 2010, 12:44 PM
Replies: 434
Views: 310,716
Posted By cbritton
These are happening because of the overlap in the...

These are happening because of the overlap in the assignment for each type which makes it possible to have multiple states true at the same time:


def isUpCloseBar = (x1 < 2);
def isDownCloseBar...
Forum: ThinkOrSwim July 28th, 2010, 09:19 AM
Replies: 434
Views: 310,716
Posted By cbritton
isMidClose bar = true works for me. ...

isMidClose bar = true works for me.




Yes, 2.3 will make the interpretation a "low close" bar which is correct.

So based on your suggestion above, the new definition of x1 is this:
Forum: ThinkOrSwim July 26th, 2010, 10:01 AM
Replies: 434
Views: 310,716
Posted By cbritton
I can make the changes when we have agreement on...

I can make the changes when we have agreement on what the changes should be, if that's not too much to ask for. This is the code that is in question:


def x1 = if (close == low) then avgSpread...
Forum: ThinkOrSwim July 24th, 2010, 09:55 AM
Replies: 434
Views: 310,716
Posted By cbritton
I double checked the original NT version. It has...

I double checked the original NT version. It has the same logic:


// Check if the close is in the Highs/Lows/Middle of the bar.
x1 = (Close[0] - Low[0] == 0.00 ?...
Forum: ThinkOrSwim June 6th, 2010, 09:11 AM
Replies: 434
Views: 310,716
Posted By cbritton
I'm no expert on SuperTrend, but here's a link to...

I'm no expert on SuperTrend, but here's a link to the non-c# formula (see post #10):

SuperTrend formula - Page 2 | Trade2Win Forums...
Forum: ThinkOrSwim May 27th, 2010, 06:33 PM
Replies: 434
Views: 310,716
Posted By cbritton
Hope this helps: ...

Hope this helps:

http://team.thinkorswim.com:7001/thinkscript/dark/index.html
The Complete Beginners Guide to Thinkscript « Read the Prospectus...
Forum: ThinkOrSwim May 19th, 2010, 12:43 PM
Replies: 434
Views: 310,716
Posted By cbritton
I'm not an expert on VSA, but there is plenty of...

I'm not an expert on VSA, but there is plenty of resources on the web explaining how it works. The NT version is someone's interpretation of Tom William's description. My role is limited to...
Forum: ThinkOrSwim May 16th, 2010, 09:09 AM
Replies: 434
Views: 310,716
Posted By cbritton
It seems ok to me. I attached the CRUS 5 minute...

It seems ok to me. I attached the CRUS 5 minute from the past few days. Can you describe what problems you are having or post a screenshot?

Regards,
-C
Showing results 1 to 25 of 37

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