NexusFi: Find Your Edge


Home Menu

 



Categories Help    






The Elite Circle
File sharing for Elite Members only, includes any and all platforms and file types


Sort by
Filter

Show full/short entries Entries
"Visual" WMA 5 *
Hi All,

I think I have successfully tweaked the script from EMAon5minData to achieve MTF EMA.

The story is that I have read the post by @TakingStock12 and @michaelf post with request to which @cory supplied modified version of indicator - so great thanks to @cory as well.

Then I have tried to tweak the definitions in the script and came up with VisEMA, VisSMA and VisWMA versions.
From my trials - they work with Tick, Range and Renko charts as well!

Please try - and let others know - any further enhancements welcome!

Cheers!
 
Suggest other entries I might like
Details: "Visual" WMA


June 15th, 2020
Size: 162.01 KB
"Visual" SMA 5 *
Hi All,

I think I have successfully tweaked the script from EMAon5minData to achieve MTF EMA.

The story is that I have read the post by @TakingStock12 and @michaelf post with request to which @cory supplied modified version of indicator - so great thanks to @cory as well.

Then I have tried to tweak the definitions in the script and came up with VisEMA, VisSMA and VisWMA versions.
From my trials - they work with Tick, Range and Renko charts as well!

Please try - and let others know - any further enhancements welcome!

Cheers!
 
Suggest other entries I might like
Details: "Visual" SMA


June 15th, 2020
Size: 161.91 KB
"Visual" EMA 4 *
Hi All,

I think I have successfully tweaked the script from EMAon5minData to achieve MTF EMA.

The story is that I have read the post by @TakingStock12 (https://nexusfi.com/download/vip_elite_circle/2229-download.html) and @michaelf post with request here (https://nexusfi.com/elite-circle/1261-want-your-ninjatrader-indicator-created-free-1607.html) to whic @cory supplied modified version of indicator - so great thanks to @cory as well.

Then I have tried to tweak the definitions in the script and came up with VisEMA, VisSMA and VisWMA versions.
From my trials - they work with Tick, Range and Renko charts as well!

Please try - and let others know - any further enhancements welcome!

Cheers!
 
Suggest other entries I might like
Details: "Visual" EMA


June 15th, 2020
Size: 161.78 KB
Multi-Time-Frame MA 5 *
Here is an MTF MA with a little more flexibility than the last post. Thought I would throw something together to make it a little easier for the group. You can set the MTF MA bar period in the parameters (i.e. 5 min 15 min etc.). This has to be in minutes. You can also select the type of MA you want and the period for that MA. If you want more than one on a chart just add more than one instance.

You should be able to use this on any chart type (although I have not tested this on all types)

Enjoy!
 
Suggest other entries I might like
Details: Multi-Time-Frame MA


June 10th, 2020
Size: 18.45 KB
Multi-Time-Frame (Visual) EMA Equivalent for Ninjatrader 8 5 *
This Zip "as is" only draws the EMA(20) from a 5 Minute Chart onto any other chart ... you can, however, edit it as I did to draw the EMA off of any chart you choose.

I had been looking for a replacement for the Multi-time-frame, a.k.a. "Visual" EMA indicator (Ninja7 only) since upgrading to Ninja8 and found this Zip on Ninja Support Forum here: https://forum.ninjatrader.com/forum/ninjatrader-8/indicator-development/1054129-multi-timeframe-ema This version here, as I mentioned, ONLY draws from a 5 minute chart (which I don't use) and only draws an EMA(20). So ...

I wanted it to work as an EMA(21) and for it to be drawn off of a 2000 Tick chart rather than a 5 minute chart so I had to edit the code. You can do this as well, changing the source chart for the EMA to whatever Chart type and period you like. Pretty simple really (had to be incredibly simple for me to be able to do it!).

Here are the lines of code that need to be changed to what you want to see/use: Lines 27 (change "EMAon5minData" to your chart period and type ... for me that was to the "EMAon2000TickData"), 35 (same as line 27 change), 51(change "Minute, 5" to your chart type and period and also change "5 minute" to the right of that (in grey) to your chart period and type), 55 (change "20" to your desired EMA period), and 63 (same change as line 55).

After that, compile. Then compile a standard Ninja indie to check for errors. You can then change the name of the indie if you like by going into Documents-Ninjatrader8-Bin-Custom-Indicators ... find "Emaon5minData.cs", right click on it, choose "rename" and change the name to whatever you want.
Hope this is helpful to those others out there in search of a Multi-Time-Frame or "Visual" EMA for Ninja8.
 
Suggest other entries I might like
SigmaSpikes strategy NT8 5 *
Strategy based on SigmaSpikes

Coded by bcomas. Email me for improvements or suggestions

SigmaSpikes as described by Adam H Grimes. https://adamhgrimes.com/how-to-calculate-sigmaspikes/

* standard deviation of daily returns over a period , searching price spikes.

Parameters:

// SigmaSpikes Settings
SigmaSpikesFactor = 2.50; (tweak according timeframe used)
UseSigmaSpikes = true;

// StopLoss & ProfitTarget
UseProtectiveStops = true;
StopLoss = 100;
ProfitTarget = 100;

// Daily Target
Contracts = 1;
DailyLossLimit = -100;
DailyProfitLimit = 100;
DailyTradesCount = 100;

// Email alerts
UseEmail = false;
EnableEntryAlert = false;
EnableExitAlert = false;
toEmailAddress = @"";

// Times
Session1 = true;
Session1Start = 0;
Session1End = 235959;

Session2 = false;
Session2Start = 90000;
Session2End = 110000;

Session3 = false;
Session3Start = 120000;
Session3End = 125900;

Thanks to the first developer:

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

Testing:
https://nexusfi.com/elite-automated-ninjatrader-trading/32758-want-your-ninjatrader-strategy-created-free-184.html
 
Suggest other entries I might like
Details: SigmaSpikes strategy NT8


May 26th, 2020
Size: 7.41 KB
IntraBarDeltaMax 5 *
Indicator: gemIntraBarDeltaMax
Version: 1.3
Platform: NT8

This indicator identifies the maximum ask and bid deltas within a bar. You can plot one or both as hash marks on the bar. Alternatively, you can also plot the price level with the maximum volume within a bar.

This indicator requires tick data, so best not to load a large time frame or it will take a while to load.

Enjoy!

Please do not distribute outside the futures.io community.

1.3 Actually uploaded this time, sorry about that.
1.3 - Added ability to restrict the look back period for the indicator (bit of a time savings if you are loading more than a day or two).
1.2 - Show max min price level delta or max ask bid volume
1.1 - Found and fixed a logic error. bid ask and total volume are now lining up perfectly with with the Ninjatrader orderflow.
 
Suggest other entries I might like
Details: IntraBarDeltaMax


May 4th, 2020
Size: 3.97 KB
TimeAtPrice 5 *
gemTimeAtPrice
Version: 1.1
Platform: NT8

This indicator is born out of my observation of price movement. Price tends to stall at the end of an auction, and it almost seemed to form a support/resistance level. I wondered what that would look like if plotted....hence the Time At Price indicator. This indicator requires tick replay to be enabled and should work on any bar type (although I have not tested this). It measures the interval between ticks and how much time is spent at a particular price level within a bar. It is therefore analogous to the COT but is purely based on time. It then plots a hash mark on the bar corresponding to the most time spent at that price level. Since it needs tick data, best to load without a large look back period (or it will take a while to load).

Enjoy!

Please do not distribute outside the futures.io community

Version 1.1 - Added ability to restrict the look back period for the indicator (bit of a time savings if you are loading more than a day or two).
 
Suggest other entries I might like
Details: TimeAtPrice


May 2nd, 2020
Size: 3.19 KB
Price Action Swing strategy NT8 5 *
Coded by bcomas. Email me for improvements or suggestions

Strategy based on PriceActionSwing indicators
https://nexusfi.com/local_links.php?catid=26&linkid=1781


Parameters:

// PriceActionSwing indicator Setting
SwingStrength = 20;

// StopLoss & ProfitTarget
UseProtectiveStops = true;
StopLoss = 100;
ProfitTarget = 150;

// Daily Target
Contracts = 1;
DailyLossLimit = -99;
DailyProfitLimit = 999;
DailyTradesCount = 99;

// Email alerts
UseEmail = false;
EnableEntryAlert = false;
EnableExitAlert = false;
toEmailAddress = @"";

// Times
Session1 = true;
Session1Start = 0;
Session1End = 235959;

Session2 = false;
Session2Start = 90000;
Session2End = 110000;

Session3 = false;
Session3Start = 120000;
Session3End = 125900;

/// Thanks to "autotrader8" for share a PAS strategy sample in the Elite Automated Trading
/// https://nexusfi.com/showthread.php?t=52695

strategy with abc pattern - PASPRO

https://nexusfi.com/ninjatrader/1272-priceactionswing-discussion-190.html
 
Suggest other entries I might like
Details: Price Action Swing strategy NT8


April 12th, 2020
Size: 71.57 KB
WaveTrend for NT7 4 *
Wave Trend Indicator made by @LazyBear from TradingView
 
Suggest other entries I might like
Details: WaveTrend for NT7


March 27th, 2020
Size: 5.67 KB
 



 
Category
 




© 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