NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 29
Search: Posts Made By: baberg
Forum: NinjaTrader January 10th, 2013, 04:04 AM
Replies: 111
Views: 53,226
Posted By baberg
Is it known if NT8 will support old Market Replay...

Is it known if NT8 will support old Market Replay separated Level 1&2 NT7 files ? (since Level1&2 files will be commuted to one file in NT8)
Forum: NinjaTrader September 27th, 2011, 06:44 AM
Replies: 20
Views: 14,258
Posted By baberg
I don't get it. With actual No Gap Range bars, if...

I don't get it. With actual No Gap Range bars, if market moves 4 ticks it should not display a new range bar right away because nothing prevents the market to tick the 5th tick above or below the 4...
Forum: NinjaTrader September 27th, 2011, 05:33 AM
Replies: 13
Views: 5,395
Posted By baberg
Hi guys, thanks a lot for offering me your...

Hi guys, thanks a lot for offering me your help...

RJay, I'm not sure what you mean by "Chart type" and "Value size" ? Could you please specify ?

bukkan, I added "ChartControl.Refresh()" at...
Forum: NinjaTrader September 22nd, 2011, 02:13 PM
Replies: 2
Views: 2,836
Posted By baberg
call plot function from OnBarUpdate()

Hello, I would like to succeed in calling Plot function from OnBarUpdate()

Starting from :
base.plot(graphics, ...

How do you retrieve bounds, min, max from this area of NinjaScript ?
...
Forum: NinjaTrader September 22nd, 2011, 02:10 PM
Replies: 13
Views: 5,395
Posted By baberg
Back on the topic :) Override plot reacts...

Back on the topic :)

Override plot reacts to specific events like last price refresh, scroll movement, mouse click etc.

However, the refresh rate is not enough for me. I'd really wish to...
Forum: NinjaTrader September 14th, 2011, 11:38 AM
Replies: 4
Views: 2,515
Posted By baberg
I will compromise for this. Thank you !

I will compromise for this. Thank you !
Forum: NinjaTrader September 14th, 2011, 03:10 AM
Replies: 4
Views: 2,515
Posted By baberg
switch parameter enum Q

Hi again !

I'm diving deep into details, sorry.

I use public enums in order to get comprehensive toggle parameters for my indies.

public enum act{action,actionTwo};

Is there a way to...
Forum: NinjaTrader September 13th, 2011, 04:00 PM
Replies: 3
Views: 3,336
Posted By baberg
Thanks for the light. I'll work around the...

Thanks for the light.

I'll work around the hybrid way then. I'll fill the gaps with "Draw Line" objects if needed.
Forum: NinjaTrader September 13th, 2011, 05:41 AM
Replies: 3
Views: 3,336
Posted By baberg
NinjaScript dash style switch

Hi,

I use PlotColors[x][x]=Color.Lambda; already to switch color from bar to bar.
I use Plots[x].Pen.DashStyle=DashStyle.Dash; on Initialize{} if I need to change dash style for a plot without...
Forum: NinjaTrader September 5th, 2011, 10:41 PM
Replies: 9
Views: 1,888
Posted By baberg
Thanks for your Help ! However I ca't make it...

Thanks for your Help !
However I ca't make it seem to work.

Here's a simple try

if(Bars.FirstBarOfSession) c.Set(Close[1]);
else c.Set(c[1]);
c2.Set(c[0]);
foreach (Indicator i...
Forum: NinjaTrader September 5th, 2011, 12:34 AM
Replies: 9
Views: 1,888
Posted By baberg
Sorry ! Let me try again. if(indicator is...

Sorry ! Let me try again.

if(indicator is displayed on panel 2) plot.Set(a);
else if(indicator is displayed on panel 3) plot.Set(b);

I'm trying to find out if you can test on which chart panel...
Forum: NinjaTrader September 5th, 2011, 12:30 AM
Replies: 9
Views: 1,888
Posted By baberg
Actually I have a DataSeries that I wish would...

Actually I have a DataSeries that I wish would change depending if you select the indicator to appear on panel 1 or panel 2, etc

Not sure if I'm being understood.
Forum: NinjaTrader September 5th, 2011, 12:22 AM
Replies: 9
Views: 1,888
Posted By baberg
panel condition

Hi,

Is it possible to code something like :

if(indicator on panel 2)
else if(indicator on panel 3)
else ...

?
Forum: NinjaTrader August 30th, 2011, 11:20 AM
Replies: 13
Views: 5,395
Posted By baberg
I certainly understand your point. Maybe it...

I certainly understand your point.

Maybe it would not freeze running Ninja on very high-end "war" computers. Some only display one chart at a time also requiring less performance. That is why I...
Forum: NinjaTrader August 30th, 2011, 10:51 AM
Replies: 13
Views: 5,395
Posted By baberg
That is right. Actually on the chart,...

That is right.

Actually on the chart, ask/bid will only update if it occurs at the same time than a last price level change. If ask or bid refreshes while last price stays the same, then it won't...
Forum: NinjaTrader August 30th, 2011, 07:39 AM
Replies: 13
Views: 5,395
Posted By baberg
Hi, Does not matter....

Hi,




Does not matter....
Forum: NinjaTrader August 30th, 2011, 07:19 AM
Replies: 13
Views: 5,395
Posted By baberg
OnMarketData serious issue

Hello,

I'm in touch with Ninja support since a few days about this issue.

Basically I noticed that Ask and Bid does not always update correctly from OnMarketData

Here you will find a...
Forum: NinjaTrader August 22nd, 2011, 04:19 AM
Replies: 3
Views: 3,500
Posted By baberg
Hi Mike ! Thanks The Z-order index does command...

Hi Mike ! Thanks
The Z-order index does command plots but it does not seem to interac with price markers (labels of plots on y axis of charts)
Forum: NinjaTrader August 21st, 2011, 07:43 PM
Replies: 7
Views: 4,340
Posted By baberg
I knew it was there on purpose but which purpose....

I knew it was there on purpose but which purpose. Thanks a lot.
Forum: NinjaTrader August 21st, 2011, 01:55 PM
Replies: 7
Views: 4,340
Posted By baberg
I wrote : ...

I wrote :
DrawHorizontalLine("tag",true,Close[0]+ATR(Close,14)[0],Color.Yellow,DashStyle.DashDot,1);
in order to get a line at LAST price level + ATR

but I needed a price marker so in the end I...
Forum: NinjaTrader August 21st, 2011, 01:27 PM
Replies: 7
Views: 4,340
Posted By baberg
My aim was to get a price marker for a value...

My aim was to get a price marker for a value calculated only on last bar.

I tried first :

if(Bars.LastBarOfSession) PlotColors[0][0]=Color.Yellow
else PlotColors[0][0]=Color.Empty

but I...
Forum: NinjaTrader August 21st, 2011, 12:34 PM
Replies: 3
Views: 3,500
Posted By baberg
indicator price marker over last price marker

I'll make you nuts with my display questions but here's an awkward one again. :horn:

By default, indicator price markers are allways hidden below "last price" price marker on charts.

Is there a...
Forum: NinjaTrader August 21st, 2011, 12:17 PM
Replies: 7
Views: 4,340
Posted By baberg
price marker for Draw object

Hello,

I have one DrawHorizontalLine in my script. Is it possible to get a price marker on y axis for it ? (without adding a plot/DataSeries on top of it)

Maybe with a parameter inside...
Forum: NinjaTrader August 21st, 2011, 11:18 AM
Replies: 13
Views: 5,232
Posted By baberg
To my knowledge you can also filter bad ticks (%...

To my knowledge you can also filter bad ticks (% off market) from Tools>Options>Data
Forum: NinjaTrader August 15th, 2011, 05:36 PM
Replies: 5
Views: 2,991
Posted By baberg
Sweet tricks :sarcastic:

Sweet tricks :sarcastic:
Showing results 1 to 25 of 29

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