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

Can you help answer these questions
from other members on NexusFi?
Peace Deal Forward Curve: May 22%, June 51%, December 81 …
Prediction Markets & Event Contracts
Iran Forward Curve: June 30 at 56% vs June 15 at 28% -- …
Prediction Markets & Event Contracts
Iran Peace Expired NO: Ceasefire on Life Support, OPEC a …
Prediction Markets & Event Contracts
Rubios Good News Within Hours and the 30-Day Math: Why H …
Prediction Markets & Event Contracts
Iran Airspace Collapses 18 Points to 15.5% While Hormuz …
Prediction Markets & Event Contracts
 
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