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
tsipCG (Ehlers Center of Gravity)
Hey i just wanted to share the center of gravity i re-coded and fixed yesterday. It's the original from Ehlers. The ones i've found everywhere did not seem right to me!so here you go.

*****THIS INDICATOR WILL ONLY WORK LIVE WITH:
https://nexusfi.com/download/vip_elite_circle/1000-download.html?view ******


AND WITH : https://nexusfi.com/download/vip_elite_circle/1001-download.html?view ********
 
Suggest other entries I might like
Details: tsipCG (Ehlers Center of Gravity)


September 29th, 2011
Size: 6.19 KB
Moving Average Compilation 5 *
A compilation of many Moving Averages in a single indicator. You can select from:
SMA, simple
EMA, exponential
WMA, weighted
DEMA, double exponential
HMA, Hull
T3,
TEMA, triple exponential
TMA, triangular
VMA, variable
VWMA, volume weighted
ZLEMA, zero lag exponential

and use colors for rising and falling regions.

NinjaTrader 7.0.1000.6
 
Suggest other entries I might like
Details: Moving Average Compilation


September 20th, 2011
Size: 25.79 KB


Keywords: average
Strategy Framework 4 *
This is the 1.0 version of a general framework with exits to use with every kind of strategy. The main idea is that the trade exits, in general, are very simililar, so we can divide, modularize and reuse the exits. The same idea is applied to position sizing and signal tracking (is how your strategy reads the indicators). A small manual is inlcuded, and I believe that this framework can evolute to a real reusable piece of software for almost every strategy. The onExit() method is called to reset and manage the signals, LookForTrade() to open positions, and ManagePositions() to build your own custom exit. Below you can see some example methods. The public are invited to upgrade it.

public class MyStrategy : StrategyFramework {....

protected override void MyInitialize() {
base.Add(RSI(rsiPeriod,3));
base.Add(SMA(10));
base.Add(SMA(20));
}
protected override void LookForTrade() {
if (Close[0] > Open[0])
positionManager.Position1.EnterLong();
}
protected override void UpdateSignals() {

if (CrossAbove(RSI(rsiPeriod, 3).Avg, rsiHigh, 1))
rsiSignal = -1;
if (CrossBelow(RSI(rsiPeriod, 3).Avg, rsiLow, 1))
rsiSignal = 1;
}

protected override void OnExit(object sender, int positionID) {
rsiSignal = 0;
}


regards,
Henry
 
Suggest other entries I might like
Details: Strategy Framework


September 19th, 2011
Size: 47.60 KB
Workspace Changer 5 *
7/2/2012 - Version 2, Added functionality.

1. Select from available workspaces instead of typing them in.
2. Create a new WS by entering a new WS name in a blank cell and clicking the 'Open' button.
3. Close the currently open WS.

9/22 : Resolved numerous issues.

Updated to resolve scaling problems and to include room for 10 workspaces. It will also now open a closed workspace, but not close an open one.


A simple indicator that opens a persistent form (note button on right of toolbar) in which up to 5 workspace names can be entered. Click the button next to the workspace name to switch back and forth amongst them.

If some kind soul can tell me how to test for an open workspace, I can turn this into Open then Switch if the workspace isn't open.

NinjaTrader 7.0.1000.6
 
Suggest other entries I might like
Details: Workspace Changer


September 16th, 2011
Size: 7.27 KB
Adaptive_CCI 5 *
The Adaptive_CCI was developed by Mike Winfrey and Gumphrie what seems like a very long time ago for NT 6.0.
As of 9/16/2011, this version runs on NT 7 and was cleaned up a bit. Still unused code out there but left it for posterity reasons.

There are 2 components of this indicator...
1. Use of John Ehlers code to measure the market cycles and calculate an adaptive period OR set a static period.
2. Plot alternate CCIs in addition to the primary CCI.

The alternate CCIs is kind of neat I think. It was originally designed to show longer timeframe CCIs when looking at a faster timeframe chart. For example, at the time I created this, I was using a 5 minute chart but wanted to use a 1 minute chart to trade from. So, I put up a 1 minute chart and set the Alternate CCI parameters to plot 4 CCIs of 2, 3, 4, and 5 minutes. By using the 1 minute chart, can see the 2, 3, 4, and 5 minute intrabar values. That's really all it amounts to.

Works with all chart types but there are obviously some chart types where there is no direct correlation between the slower and faster periods.
 
Suggest other entries I might like
Details: Adaptive_CCI


September 16th, 2011
Size: 13.43 KB
Delta EMA Indicator V1.0 5 *
Delta EMA indicator based on Gomi's excellent contributions. I built this indicator to normalize delta for any instrument and provide delta user inputs for the following categories:

1. Extreme positive delta
2. Strong positive delta
3. Neutral Delta
4. Strong Negative delta
5. Extreme Negative Delta

I mainly modify the midtop 10.25 and midbottom of 9.75 settings to tweak the neutral delta and utilize different EMAs. Candle colors can be turned on and off. Very useful for spotting divergences or when order flow could be weakening. Attached chart shows trading with the order flow than against can result in higher probability trades.

A label based on the above parameters is plotted in the right hand side of the indicator if you set your chart properties to Right Hand Side Margin of 85.

This indicator has only been used/tested with Renko charts and users need to have the latest version of the GOM package installed.

Ninja 7.0.1000.7 version

Please email if there are any questions.

ps: I had difficulty exporting this to a zip so have included as a .cs file
 
Suggest other entries I might like
Details: Delta EMA Indicator V1.0


September 14th, 2011
Size: 13.68 KB
Vertical Scroll Tools_NT7 (Scroll/Drag) 5 *
This small indicator tool serve to scroll the chart vertically in NT7.
Its designed mainly for single data series to make things simple.
On applying, it make use of Fixed Scale attributes of NT's Chart Scale
for scrolling and have in mind its tied to right side scale. If by mistake
'F' is clicked on chart's upper right corner , it needs to be again make
"Fixed" scale either simply stretch/compress scale or set it via right scale
context menu. Scoll works smoothly except a not much noticable jump
on first scroll click after scale stretch/compress.

For vids see :


Exported using NT 7.0.1000.2

Update ( 16 Sep -11): A small logical bug removed which was causing jump/jerks even in normal scrolling during live market.

Update ( 22 Sep -11 ): Previous minor bugs fixed, and added new feature of
Auto Scrolling. As name suggest, it will scroll the chart itself if last bar ( CurrentBar ) goes off the screen by decreasing critical margin, either from
lower chart boundary or higher chart boundary. In other word it will maintain
and adjust itself to keep last bar always in chart area on prices making new session low/highs in case price bars try to overflow from boundaries.

Update ( 25 Sep -11): Following Additions:
* Two Mode of Auto Scrolling- Extreem and Center. while Extreem Mode is
normal AutoScroll as described in previous update, while Center Mode
keeps current price near center of chart always.
* Vertical Drag Feature added, which makes possible to drag the chart
vertically like default horizontal drag of NT.
* Added option to show/hide the Vertical Scroll Bar.
* Added button to turn-off/on Vertical Drag temporarily in case if it conflict
with Drawing Tools. By Default vertical drag is enable even if Button is not
made visible. It can only be turn-off after button made visible.
* Added button to turn-off/on AutoScrolling. By Default AutoScrolling is off.
* Rectified button location updation with chart resizing.
*Some minor code changes.

Update ( 08 Oct -11 ):
*Instrument change Fix .
*Some Code improvements.

Update ( 19 Nov -11 ):
Its not a new update, but only entry of latest build developed on 14-Oct-11.
More about this in post https://nexusfi.com/elite-circle/13209-vertical-scroll-experimental-8.html

CS file is named VerticalScrollTools. Displace old VerticalScroll.cs file before importing this to be safe from enum conflict.



see for vids : https://www.screencast.com/t/0sQTKwbasPx

Discuss here : https://nexusfi.com/elite-circle/13209-vertical-scroll-experimental.html
 
Suggest other entries I might like
Details: Vertical Scroll Tools_NT7 (Scroll/Drag)


September 11th, 2011
Size: 8.54 KB
Note Panel 5 *
Update: I got tired of needing to go into the indy in order to change font and color, so added some buttons to mod them for each note in the form.

This is a very simple indicator that doesn't do a lot. It simply adds up to 10 customizable notes to a side panel of user defined width. I am posting it because it illustrates how to place a button on the toolstrip and how to call an external form from said button.

With multi-timeframe charts a refresh of one indicator cause all real time indicators to reconfigure as historic indicators, causing the plots to change slightly. Being able to call a form from an indicator allows the user to change the parameters of that indicator w/o disturbing any other indicators.

I have attached the indicator and will post the VS project files if anyone is interested. To install the indicator, extract NotesPanelFull.zip to your Custom folder w/o NinjaTrader running. Start NT and import NotesPanel. Because it is a .dll based form you will need to edit the indicator and right click in the window to Add NotesEditor.dll reference. Compile the indicator and add it to a chart.

When you want to change a note, News @ 10?, just click the Notes button on the right of the toolstrip. Change your notes and OK, or just leave to Form open. Unlike other NT forms, it is not modal.

V0.1a
NT 7.0.1000.6
 
Suggest other entries I might like
Details: Note Panel


September 3rd, 2011
Size: 7.78 KB
JeffsADXv2 5 *
New version
 
Suggest other entries I might like
Details: JeffsADXv2


August 27th, 2011
Size: 5.04 KB
SwingModded 5 *
This indicator was modified and exported via NT7. Will not work in NT 6.5. Only for NT7
 
Suggest other entries I might like
Details: SwingModded


August 16th, 2011
Size: 3.74 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