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.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
53 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
130 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
70 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
44 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment