NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 21 of 21
Search: Posts Made By: decs0057
Forum: NinjaTrader March 18th, 2010, 08:06 AM
Replies: 56
Views: 51,851
Posted By decs0057
On Nov 5, i have '+' after countdown 12 (low is...

On Nov 5, i have '+' after countdown 12 (low is less low 8th countdown bar Oct 14). Bloomberg counts 13

your note:
b) for the 13th count, you can substitute the "close" of that bar with the...
Forum: NinjaTrader March 18th, 2010, 07:51 AM
Replies: 56
Views: 51,851
Posted By decs0057
in bloomberg chart only 1 '+' occurs for...

in bloomberg chart only 1 '+' occurs for countdown at Aug 20. The low of 5th bar on Aug 4 was 77.5

This is your definition for countdown
a) for an 8th count to be recorded, the low of that bar...
Forum: NinjaTrader March 17th, 2010, 05:34 AM
Replies: 56
Views: 51,851
Posted By decs0057
second countdown for ^NKY was canceled on...

second countdown for ^NKY was canceled on 06/10/09 (bar below TDSTLine, see log output window) the counts are removed from chart
Forum: NinjaTrader March 16th, 2010, 03:28 PM
Replies: 56
Views: 51,851
Posted By decs0057
Version with Perfection Test and Risk Level. I...

Version with Perfection Test and Risk Level.
I hope Setup and Countdown are now correct
Forum: NinjaTrader March 14th, 2010, 01:52 PM
Replies: 56
Views: 51,851
Posted By decs0057
1) shall i continue to count countdown if it is >...

1) shall i continue to count countdown if it is > 13 ?
2) i will draw TDSTLine for each 9 consecutive setup count. What about countdown, will i start again at 0?
Forum: NinjaTrader March 14th, 2010, 06:56 AM
Replies: 56
Views: 51,851
Posted By decs0057
1) remove counts = true removes incomplete setups...

1) remove counts = true removes incomplete setups [<9 bars] and incomplete countdowns [< 13 bars] if there is cancel of countdown. Shall i not remove countdowns if they are not completed and cancel...
Forum: NinjaTrader March 14th, 2010, 04:00 AM
Replies: 56
Views: 51,851
Posted By decs0057
1) the funny counts are incomplete setups, with...

1) the funny counts are incomplete setups, with removecounts = true they dissapear
2) why 2 countdowns ?, 18 count setup is one completed setup
3) for retest please send data for ^NKY i didn't...
Forum: NinjaTrader March 13th, 2010, 07:31 AM
Replies: 56
Views: 51,851
Posted By decs0057
I had an error in countdown Please check this...

I had an error in countdown
Please check this version

You have to set second parameter RemoveCounts = false to see incomplete countdown
Forum: NinjaTrader March 12th, 2010, 03:40 PM
Replies: 56
Views: 51,851
Posted By decs0057
attached a new version I sperated buy and sell...

attached a new version
I sperated buy and sell in 2 classes TDSeqBuy and TDSeqSell with conditions for valid setup, countdown and other buy,sell specific calculations.

In the output window i...
Forum: NinjaTrader March 9th, 2010, 06:08 AM
Replies: 56
Views: 51,851
Posted By decs0057
Attached new version One question about ...

Attached new version

One question about perfection test

This requires that the price bars of the 8th or 9th setup count must be less than both the price bars of the 6th and 7th setup count...
Forum: NinjaTrader March 8th, 2010, 08:17 AM
Replies: 56
Views: 51,851
Posted By decs0057
2) I use Close(10) in calculation of TDSTline ...

2) I use Close(10) in calculation of TDSTline
tdstBuyLine = Math.Max( tdstBuyLine, Close[0] ); Line 127

One question to price flip.
If a setup is not completed, for the...
Forum: NinjaTrader March 8th, 2010, 03:56 AM
Replies: 56
Views: 51,851
Posted By decs0057
Attached version with TDSTLine

Attached version with TDSTLine
Forum: NinjaTrader March 7th, 2010, 03:30 PM
Replies: 56
Views: 51,851
Posted By decs0057
hallo kaywai, one question about start of...

hallo kaywai,

one question about start of setup.
To start setup you need price flip ?
Forum: NinjaTrader March 6th, 2010, 02:48 PM
Replies: 56
Views: 51,851
Posted By decs0057
give me to whole set of rules please. There...

give me to whole set of rules please.

There are to many questions for me depending the countdown
Forum: NinjaTrader March 6th, 2010, 02:32 PM
Replies: 56
Views: 51,851
Posted By decs0057
kaywai, the code is from attached file. ...

kaywai,

the code is from attached file.

Do you have the actual rules ?
I have some in experience in programming, perhaps i can implement the actual rules
Forum: NinjaTrader March 5th, 2010, 06:25 PM
Replies: 56
Views: 51,851
Posted By decs0057
i tried to implement Tom de Marks TDSequential. ...

i tried to implement Tom de Marks TDSequential.
Please check if the implementation is correct
Forum: NinjaTrader March 3rd, 2010, 07:17 AM
Replies: 56
Views: 51,851
Posted By decs0057
correction: method ProcessBuySequential is only...

correction:
method ProcessBuySequential is only called in ProcessBuySetup.
Forum: NinjaTrader March 3rd, 2010, 07:01 AM
Replies: 56
Views: 51,851
Posted By decs0057
method ProcessBuySequential is only called in...

method ProcessBuySequential is only called in ProcessBuySequential.
You have to call it in OnBarUpdate

/// <summary>
/// Called on each bar update event (incoming tick)
...
Forum: NinjaTrader March 3rd, 2010, 05:56 AM
Replies: 56
Views: 51,851
Posted By decs0057
you have to declare the flag as a class variable ...

you have to declare the flag as a class variable

private bool flagBS9 = false;

In method Initialize() initialize variable flagBS9 = false;

In OnBarUpdate you increase your couter and set the...
Forum: NinjaTrader March 2nd, 2010, 09:20 AM
Replies: 56
Views: 51,851
Posted By decs0057
boolean variable initialize like this ...

boolean variable

initialize like this

bool flagBS9 = false;
Forum: NinjaTrader March 2nd, 2010, 07:02 AM
Replies: 56
Views: 51,851
Posted By decs0057
you can use a flag indicating BS == 9 if...

you can use a flag indicating BS == 9

if (BS==9)
{
BS = 0;
flagBS9 = true;
}

if( flagBS9 == true )
{
Showing results 1 to 21 of 21

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