NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 32
Search: Posts Made By: tarantino
Forum: NinjaTrader February 24th, 2011, 08:58 PM
Replies: 26
Views: 13,126
Posted By tarantino
NinjaTrader 6.5 with Win7 SP1

Unzip attached file. It contains NinjaTrader.Base.dll
Drop it into c:\Program Files\NinjaTrader 6.5\bin folder (click yes for overwrite prompt)

You should be able to run NinjaTrader 6.5 under...
Forum: NinjaTrader January 5th, 2011, 01:03 PM
Replies: 34
Views: 15,165
Posted By tarantino
If you export using NT, then NT will take care...

If you export using NT, then NT will take care when you import back and will place everything where it belongs.
Only problem could be if you are referencing 3rd party assemblies which are not...
Forum: NinjaTrader January 5th, 2011, 12:53 PM
Replies: 34
Views: 15,165
Posted By tarantino
What references you need? If you import...

What references you need? If you import deltatrader.zip everything should be ok
Forum: NinjaTrader January 5th, 2011, 12:31 PM
Replies: 34
Views: 15,165
Posted By tarantino
I am not sure where the problem is. If you...

I am not sure where the problem is.

If you export your indicator as dll, you don't need any references - NT will add the reference when importing.

If you export your indicator which...
Forum: NinjaTrader December 14th, 2010, 03:13 PM
Replies: 58
Views: 56,844
Posted By tarantino
May be this version will help.

May be this version will help.
Forum: NinjaTrader December 3rd, 2010, 08:43 AM
Replies: 11
Views: 6,521
Posted By tarantino
Mapped = on the network and not on the local...

Mapped = on the network and not on the local machine
Forum: NinjaTrader December 2nd, 2010, 11:39 PM
Replies: 11
Views: 6,521
Posted By tarantino
Isn't your Documents folder mapped to a network...

Isn't your Documents folder mapped to a network drive?
Forum: NinjaTrader December 1st, 2010, 11:40 PM
Replies: 6
Views: 1,806
Posted By tarantino
NinjaTrader can do this by utilizing...

NinjaTrader can do this by utilizing Displacement.
Attached Ichimoku image clearly demonstrates that.
Forum: NinjaTrader December 1st, 2010, 02:43 PM
Replies: 156
Views: 54,079
Posted By tarantino
I think it is worth mentioning, that NT7 is out...

I think it is worth mentioning, that NT7 is out of beta.
Forum: NinjaTrader November 16th, 2010, 12:47 PM
Replies: 13
Views: 5,563
Posted By tarantino
protected override void OnBarUpdate() { ...

protected override void OnBarUpdate()
{
IRectangle r = DrawRectangle("r", true, CurrentBar, Close[0] - 4 * TickSize, 0, Close[0] + 4 * TickSize, Color.Red, Color.Red, 8);
r.SeparateZOrder = true;...
Forum: Feedback and Announcements November 12th, 2010, 12:45 AM
Replies: 33
Views: 8,416
Posted By tarantino
Maybe I am missing something, but I see Velocity...

Maybe I am missing something, but I see Velocity and Multicharts banners flying around...
Forum: NinjaTrader November 3rd, 2010, 09:37 PM
Replies: 115
Views: 51,374
Posted By tarantino
How about if(Bars.FirstBarOfSession) ?

How about if(Bars.FirstBarOfSession) ?
Forum: NinjaTrader November 3rd, 2010, 09:25 PM
Replies: 6
Views: 3,401
Posted By tarantino
VHF(14, AnyNumber)[0] > 0.36

VHF(14, AnyNumber)[0] > 0.36
Forum: NinjaTrader October 28th, 2010, 01:20 PM
Replies: 13
Views: 7,267
Posted By tarantino
I am afraid this is the case...

I am afraid this is the case...
Forum: NinjaTrader October 28th, 2010, 12:35 PM
Replies: 43
Views: 43,094
Posted By tarantino
It does repaint

It does repaint
Forum: NinjaTrader October 28th, 2010, 12:27 PM
Replies: 13
Views: 7,267
Posted By tarantino
Windows registry is not affected. All bars...

Windows registry is not affected.

All bars are constructed passing some kind of periodtype to base class constructor.

There are 15 PeriodTypes available for custom bar types.
Final0 thru...
Forum: NinjaTrader October 21st, 2010, 04:12 PM
Replies: 115
Views: 51,374
Posted By tarantino
Does anybody know if there is a way to convert NT...

Does anybody know if there is a way to convert NT Market Replay Data to Gomi Recorder format?
Or at least anybody tried to do such an utility?
Forum: NinjaTrader October 20th, 2010, 09:14 AM
Replies: 3
Views: 2,196
Posted By tarantino
You are looking into Z-Order. To change Z-Order...

You are looking into Z-Order.
To change Z-Order of indicator, you select that indicator by clicking on it on the chart, then holding "Shift" Key and rotating mouse wheel.
Forum: NinjaTrader October 14th, 2010, 10:49 AM
Replies: 23
Views: 11,313
Posted By tarantino
Once again. protectedoverridevoid OnBarUpdate()...

Once again.
protectedoverridevoid OnBarUpdate()
{

if (FirstTickOfBar)
{
netVolUp = 0;
}
VolumeUp.Set(netVolUp);
}
Forum: NinjaTrader October 12th, 2010, 10:47 AM
Replies: 23
Views: 11,313
Posted By tarantino
I don't understand where you see a bug? You...

I don't understand where you see a bug?

You set volume to zero and expect it not to be a zero? You better check your logic before reporting bugs.

protectedoverridevoid OnBarUpdate()
{

if...
Forum: NinjaTrader October 11th, 2010, 03:27 PM
Replies: 23
Views: 11,313
Posted By tarantino
Each tick fires OnMarketData and OnBarUpdate(if...

Each tick fires OnMarketData and OnBarUpdate(if COBC = false) as well.

OnMarketData is fired before OnBarUpdate.
if you are using same variables in both event handlers - be careful - you might...
Forum: NinjaTrader October 10th, 2010, 03:18 PM
Replies: 9
Views: 3,486
Posted By tarantino
How about: public int ValueToShow ...

How about:


public int ValueToShow
{
get { return valuetoShow; }
set { valuetoShow = Math.Max(2, value % 2 == 0 ? value : value + 1); }
}
Forum: Emini and Emicro Index October 6th, 2010, 09:05 PM
Replies: 6
Views: 3,901
Posted By tarantino
never say never...

never say never...
Forum: NinjaTrader October 4th, 2010, 06:54 PM
Replies: 9
Views: 4,478
Posted By tarantino
May be this will fit your needs. It does...

May be this will fit your needs. It does currentHL and previous HLC
Forum: NinjaTrader October 3rd, 2010, 02:36 PM
Replies: 48
Views: 38,294
Posted By tarantino
You can hold WPF controls in WinForms. So you can...

You can hold WPF controls in WinForms. So you can mix both - WinForms and WPF.
Showing results 1 to 25 of 32

What unexpected challenges have you encountered while trading on a "Funded Trader" platform?

 


 
 


© 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