NexusFi: Find Your Edge


Home Menu

 





Weekly System


Discussion in NinjaTrader

Updated
    1. trending_up 2,773 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
Kush
San Sebastian/Spain
 
Posts: 12 since Sep 2011
Thanks Given: 0
Thanks Received: 1

Hell Im trying to programm this system but there is error somewhere. The idea is to go long when one down day and one down week in a row.


protected override void Initialize()
{
Add(PeriodType.Week,1);
CalculateOnBarClose = true;
}

/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{

if (BarsInProgress == 1)
{
return;
}
// Condition set 1

if (Close[1][0] > Close(BarsArray[1],[1]
&& Close[0] > Close[1])
{
EnterLong(DefaultQuantity, "");
}
}

Some help.....


Reply With Quote

 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
8 thanks
Darmok and Jalad at Tanagra
3 thanks
  #3 (permalink)
 Prtester 
SE-Asia
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Amp
Trading: ES
Posts: 153 since Jun 2009
Thanks Given: 66
Thanks Received: 124



Kush View Post
Hell Im trying to programm this system but there is error somewhere. The idea is to go long when one down day and one down week in a row.


protected override void Initialize()
{
Add(PeriodType.Week,1);
CalculateOnBarClose = true;
}

/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{

if (BarsInProgress == 1)
{
return;
}
// Condition set 1

if (Close[1][0] > Close(BarsArray[1],[1]
&& Close[0] > Close[1])
{
EnterLong(DefaultQuantity, "");
}
}

Some help.....

Try

if (Closes[1][0] > Closes[1][1]
&& Close[0] > Close[1])


Reply With Quote




Last Updated on June 27, 2012


© 2026 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 - Downloads - Top
no new posts