NexusFi: Find Your Edge


Home Menu

 



Showing results 1 to 25 of 81
Search: Posts Made By: Fat Tails
Forum: NinjaTrader December 12th, 2021, 03:46 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Our "ama"-indicators use the namespace...

Our "ama"-indicators use the namespace LizardIndicators. Maybe you need to add one line to the using declarations

using NinjaTrader.NinjaScript.Indicators.LizardIndicators;

Alternatively...
Forum: NinjaTrader December 8th, 2021, 11:43 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
Instead of amaBetterVolume[0].BarType == 1 you...

Instead of amaBetterVolume[0].BarType == 1 you would use amaBetterVolume.BarType[0] == 1.
Forum: NinjaTrader August 20th, 2019, 12:53 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Sudhir, I have checked the market analyzer...

Sudhir,

I have checked the market analyzer template. The problem here is that you had selected the indicator instead of the market analyzer column which is a separate file. The market analyzer...
Forum: NinjaTrader August 20th, 2019, 04:28 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
sudhirc: The market analyzer column returns...

sudhirc: The market analyzer column returns values between 0 and 9. When you define cell conditions each of the numbers can be replaced with a colored text field.

It is difficult to comment your...
Forum: NinjaTrader March 5th, 2019, 03:53 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
I have a significant backlog of other...

I have a significant backlog of other indicators/strategies that were requested. This one cannot be on the priority list.
Please don't expect anything during the coming months.
Forum: NinjaTrader March 4th, 2019, 04:32 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
When you perform volume spread analysis (VSA)...

When you perform volume spread analysis (VSA) then you look for high volume bars and wide range bars. How would you identify a wide range bar on a range chart where all bars have the same range?
...
Forum: NinjaTrader March 3rd, 2019, 12:41 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Attached a sample chart how you may use the...

Attached a sample chart how you may use the Better Volume indicator.

I will have a look at the other indicator to see whether there is anything that I can incorporate.
...
Forum: NinjaTrader March 3rd, 2019, 12:03 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
This seems to be a range chart. The indicator...

This seems to be a range chart. The indicator logic is not compatible with range charts, as it basically performs volume spread analysis. If you use it with a range chart, the spread is always the...
Forum: NinjaTrader March 3rd, 2019, 08:21 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
Could you give us a brief description with a few...

Could you give us a brief description with a few screenshots to show how it works?
Forum: NinjaTrader February 15th, 2019, 03:30 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
The bug is in line 166 of that indicator and...

The bug is in line 166 of that indicator and related to the way you use the Brushes. I do not think that it has anything to do with Better Volume. If you need any help, send me a private message.
Forum: NinjaTrader February 15th, 2019, 02:50 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
You only showed me half or the error message, as...

You only showed me half or the error message, as the beginning of the line is missing. There is a bug somewhere in line 166 of something, but as I do not know what is something, and as I cannot check...
Forum: NinjaTrader February 6th, 2019, 06:31 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
No recommendation, as there are thousands of...

No recommendation, as there are thousands of indicators.

If you wish to trade order flow, then you would possibly look for orderflow indicators and start with simple volumetric charts and observe...
Forum: NinjaTrader February 5th, 2019, 05:14 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
I do not think that this idea is going to work....

I do not think that this idea is going to work. High selling volume - that is bid traded volume - can often be a bullish sign. Also this has nothing to do with the Better Volume indicator, as it does...
Forum: NinjaTrader February 5th, 2019, 02:28 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Could you please specify what you call a "cross...

Could you please specify what you call a "cross over"?
Forum: NinjaTrader February 5th, 2019, 07:46 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
This would be an entirely new indicator, not...

This would be an entirely new indicator, not directly related to spread volume analysis as implemented with Better Volume.
Forum: NinjaTrader February 5th, 2019, 04:52 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
May be you need to increase the lookback period...

May be you need to increase the lookback period of your chart. The Relative Volume indicator requires more data to calculate what is relative volume.
Forum: NinjaTrader February 4th, 2019, 04:45 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Volumetric bars are basically built from the...

Volumetric bars are basically built from the underlying bar type and then have a footprint added.

Therefore any indicator maybe applied to the volumetric bar, when it can be applied to the...
Forum: NinjaTrader January 9th, 2019, 02:20 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Hi Sudhir, Thank you for coming up with...

Hi Sudhir,


Thank you for coming up with this question.


To fix this issue please edit the indicator and change line 193 to
IsSuspendenWhileInactive = false;
Forum: NinjaTrader September 12th, 2018, 09:59 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
Sudhir, Thank you for your feedback. ...

Sudhir,


Thank you for your feedback.

The sound files did not fire because I had forgotten to initialize the path pointing to the sounds directory of NinjaTrader 8.

I have now updated the...
Forum: NinjaTrader September 11th, 2018, 02:00 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Pretty easy to fix. Your 1-minute chart...

Pretty easy to fix.

Your 1-minute chart displays the pivots correctly. Your 20-second chart does not.

In fact the 20-second chart calculates Monday's pivots from Thursday's data.

This points...
Forum: NinjaTrader September 4th, 2018, 11:34 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
Of course you may call it. It comes with a public...

Of course you may call it. It comes with a public Series<double> "BarType" that can be accessed by an indicator or a strategy. When you first do so, please use the indicator with the default...
Forum: NinjaTrader August 26th, 2018, 04:49 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
I do not have plans for a volume filter right...

I do not have plans for a volume filter right now.

I will possibly add sound alert files later, but in the meantime you may use the indicator with your own sound files. Just select them via the...
Forum: NinjaTrader August 22nd, 2018, 03:22 PM
Replies: 218
Views: 116,958
Posted By Fat Tails
Have posted the indicator in the download...

Have posted the indicator in the download section.

https://nexusfi.com/local_links.php?action=ratelink&catid=27&linkid=1989

Please let me know any observations.
Forum: NinjaTrader December 5th, 2017, 04:22 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
I am still in the process of translating my own...

I am still in the process of translating my own indicators to NinjaTrader 8. I have little time right now to adventure into new projects. I will probably focus on volume indicators later next year.
Forum: NinjaTrader December 5th, 2017, 03:51 AM
Replies: 218
Views: 116,958
Posted By Fat Tails
I am sorry. I do not intend to rebuild all...

I am sorry. I do not intend to rebuild all NinjaTrader indicators that have ever been created somewhere.

Why don't you stick with the original?
Showing results 1 to 25 of 81

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