![]() |
This website will be down for maintenance from Friday May 24th at 6PM MDT until Saturday May 25th at 11AM MDT. We apologize for the inconvenience. If you need assistance during this time, please email sales@ninjatrader.com
|
|||||||
| Strategy Development Support for the development of custom automated trading strategies using NinjaScript. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Senior Member
Join Date: Sep 2008
Location: Old Lyme, CT
Posts: 108
Thanks: 0
Thanked 0 times in 0 posts
|
I have declared an input in the Wizard called Bbuff to be used as an offset. The default minimum is -0.0015 (EURUSD). I don't seem to be able to set a negative value for this either in the input declarations section of the Wizard or in the parameters section when setting up a condition.
Example: LinReg crosses under LinReg -Bbuff where Bbuff is currently set as -0.0001. How do I set a negative offset? |
|
|
|
|
|
#2 |
|
NinjaTrader Product Manager
Join Date: May 2007
Location: Denver, CO
Posts: 17,458
Thanks: 1
Thanked 106 times in 70 posts
|
skat100,
In the User Defined Inputs page, select type double. Then in the Min. row just type in a negative value. It will allow you to have a minimum of whatever you want. It may display as 0.00, but if you press the View Code button and expand the Properties region of the code you will find this: Code:
[Description("")]
[Category("Parameters")]
public double MyInput0
{
get { return myInput0; }
set { myInput0 = Math.Max(-0.0001, value); }
}
Josh
NinjaTrader Customer Service |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Offset Percent inquire | mohdfraz | General Programming | 7 | 01-06-2009 06:16 AM |
| Stop Loss Offset | CraigC | General Programming | 20 | 09-08-2008 10:26 AM |
| Offset. | Drakmyre | Strategy Development | 3 | 08-21-2008 11:59 PM |
| how to offset EMA's | vpr10c | Indicator Development | 3 | 07-21-2008 02:39 PM |
| Negative offset | Hank M | Strategy Development | 8 | 02-05-2008 09:56 AM |