Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
strategy works on 5 second timeframe but not on 1 seocnd timeframe
Collapse
X
-
strategy works on 5 second timeframe but not on 1 seocnd timeframe
please refer to attachment instead of asking forerror etc… much easier that way. But my strategy works on all timeframe inclunding 5 second until i switch it to 1 second and i dont understand why?Tags: None
-
region Using declarations
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Gui;
using NinjaTrader.Gui.Chart;
using NinjaTrader.Gui.SuperDom;
using NinjaTrader.Gui.Tools;
using NinjaTrader.Data;
using NinjaTrader.NinjaScript;
using NinjaTrader.Core.FloatingPoint;
using NinjaTrader.NinjaScript.Indicators;
using NinjaTrader.NinjaScript.DrawingTools;
#endregion
//This namespace holds Strategies in this folder and is required. Do not change it.
namespace NinjaTrader.NinjaScript.Strategies
{
public class Test : Strategy
{
private double StopLong;
private MIN MIN1;
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"Enter the description for your new custom Strategy here.";
Name = "Test";
Calculate = Calculate.OnEachTick;
EntriesPerDirection = 1;
EntryHandling = EntryHandling.AllEntries;
IsExitOnSessionCloseStrategy = true;
ExitOnSessionCloseSeconds = 30;
IsFillLimitOnTouch = false;
MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
OrderFillResolution = OrderFillResolution.Standard;
Slippage = 0;
StartBehavior = StartBehavior.WaitUntilFlat;
TimeInForce = TimeInForce.Gtc;
TraceOrders = false;
RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
StopTargetHandling = StopTargetHandling.PerEntryExecution;
BarsRequiredToTrade = 20;
// Disable this property for performance gains in Strategy Analyzer optimizations
// See the Help Guide for additional information
IsInstantiatedOnEachOptimizationIteration = true;
StopLong = 1;
}
else if (State == State.Configure)
{
}
else if (State == State.DataLoaded)
{
MIN1 = MIN(Low, 3);
}
}
protected override void OnBarUpdate()
{
if (BarsInProgress != 0)
return;
if (CurrentBars[0] < 1)
return;
// Set 1
if ((Close[1] > Open[1])
&& (Position.MarketPosition == MarketPosition.Flat)
// Condition group 1
&& ((BarsSinceExitExecution(0, "", 0) == -1)
|| (BarsSinceExitExecution(0, "", 0) > 1)))
{
EnterLong(Convert.ToInt32(DefaultQuantity), @"EntryLong");
StopLong = MIN1[0];
}
// Set 2
if (Position.MarketPosition == MarketPosition.Long)
{
ExitLongStopMarket(Convert.ToInt32(DefaultQuantity ), StopLong, @"StopLong", @"EntryLong");
ExitLongLimit(Convert.ToInt32(DefaultQuantity), (Position.AveragePrice + (15 * TickSize)) , @"ProfitLong", @"EntryLong");
}
}
}
}
region Wizard settings, neither change nor remove
/*@
-
Hello traderqz,
Thank you for your post.
It looks like you have already started a topic for this inquiry: https://forum.ninjatrader.com/forum/...-and-stop-loss
We do kindly ask that you refrain from creating multiple support cases for the same inquiry, as this duplicates our support efforts and reduces our team's availability to assist all clients in a timely and efficient manner.
If you need assistance for the same inquiry, please reply to the original post instead of starting a new thread.Gaby V.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by herzogvladimir2, Today, 08:10 PM
|
0 responses
2 views
0 likes
|
Last Post
![]() |
||
Started by giogio1, 04-13-2025, 01:42 AM
|
2 responses
32 views
0 likes
|
Last Post
![]()
by giogio1
Today, 07:19 PM
|
||
Started by mmenigma, 01-23-2024, 09:37 AM
|
1 response
86 views
0 likes
|
Last Post
![]()
by Nin8aTrender
Today, 03:47 PM
|
||
Started by wbayne333, 02-22-2021, 01:18 PM
|
6 responses
409 views
0 likes
|
Last Post
![]()
by Nin8aTrender
Today, 03:44 PM
|
||
Started by gtheaded, 07-03-2020, 03:47 PM
|
3 responses
370 views
0 likes
|
Last Post
![]()
by Nin8aTrender
Today, 03:21 PM
|
Comment