NexusFi: Find Your Edge


Home Menu

 





Weekly System


Discussion in NinjaTrader

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




 
Search this Thread

Weekly System

  #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?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
MC PL editor upgrade
MultiCharts
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
26 thanks
Diary of a simple price action trader
26 thanks
Tao te Trade: way of the WLD
23 thanks
My NQ Trading Journal
16 thanks
HumbleTraders next chapter
9 thanks
  #3 (permalink)
 Prtester 
SE-Asia
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Amp
Trading: ES
Posts: 151 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


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