NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Found 2328 matching entries

Sort by

Entries
BabyBlue Line 4 *
Exported using NT Version 7.0.1000.9

BabyBlue Line
An independently created Indie based on the midnight market price of your desired instrument.
Midnight in the City of London (Blue) / Midnight in the City of New York (Red) / MiDline Pivot (Yellow)
Yes, the forecast indicated in the upper right corner of your chart is a part of the "heads up" strategy based on the relationship of the aforementioned prices!
It has proven to be a very profitable intraday trading indicator. Time charts only (5min-10min-15min-30min-60min)

You can adjust the MidLevel time to either start with the Blue or the Red line.
Remember, the Mid Level becomes the next day's pivot level!!

This indie keeps evolving so do check the thread for an update!
Test and reTest the BBlueLine, otherwise this indicator is not for you.
SHORT webinar-gabinar re: the BBlue [COLOR=#0066cc]http://www.htech.net/blue/[/COLOR]


P.S.
The amount of the "Blue Line" days is adjustable, 1-5.
"Start Time" is the NYSE Open (630 PST / 930 EST)

More info: https://nexusfi.com/elite-trading-journals/12265-blueline-chronicle-77.html Post # 770 has the BBlue Template


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: BabyBlue Line
Category: NinjaTrader 7 Indicators 


April 5th, 2012
Size: 4.26 KB
Downloaded: 765 times
Backadjusting Futures 5 *
This is a document that explains how to backadjust futures contracts.


Category Educational 
 
Suggest other entries I might like
Details: Backadjusting Futures
Category: Educational 


September 1st, 2010
Size: 38.12 KB
Downloaded: 728 times

Keywords: backadjust merge rollover continuous
BackGroundGradient Colour Scheme 5 *
Exported using NT version 7 RC1
NT7 & NT6.5 compatible

Did this for someone on the NT forum.

I can see some people coming up with some really cool backgrounds - hope this gives them the start they need.

Dec 10 2010
BackGroundGradient3
Fix for certain 'banding' issues at some chart sizes. Other small adjustments to code for efficiency.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: BackGroundGradient Colour Scheme
Category: NinjaTrader 7 Indicators 


September 23rd, 2010
Size: 4.46 KB
Downloaded: 1173 times
Backtesting Script 4 *
Here is a script that I had my programmer write up for backtesting Renko bars, it uses the close of this bar instead of NinjaTraders default setting "open of next bar" This is very useful for system backtesting Renko bars.

The .cs file needs to be put inside of your "type" folder in NinjaTrader 7.

JAM


Category The Elite Circle 
 
Suggest other entries I might like
Details: Backtesting Script
Category: The Elite Circle 


March 18th, 2012
Size: 4.51 KB
Downloaded: 432 times
Balance Line NT7
Cory's Balance Line V1, tweaked to work with NT7. Enjoy.

Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Balance Line NT7
Category: NinjaTrader 7 Indicators 


April 29th, 2010
Size: 3.67 KB
Downloaded: 504 times

Keywords: balance cory line nt7
Balance Line Total V1
This one is almost the same as BalanceLine but it uses H+L/2 of total number of days back not just 2 at a time. If you don't see it plots try to increase number of download days or reduce number of days back, the default setting is 5 days back.


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Balance Line Total V1
Category: NinjaTrader 6.5 Indicators 


April 30th, 2010
Size: 3.28 KB
Downloaded: 237 times

Keywords: balance cory line total
Balance Line V2
This indicator draw a balance line for a particular day, it is always = the previous 2 days H+L/2. idea credit go to perryg for more information go here
https://nexusfi.com/ninjatrader-programming/3523-50-balance-point-rule.html

-4/30/10
add on/off switch to turn off the drawing in case it is plotted too far away from prices making a chart hard to read or you just don't want to plot it.

-5/02/10

just a re-upload v2 for some reason the name v2 won't show up.
if the name V2 doesn't show in your indicator list just unzip the file and compile the BalanceLineV2.cs file directly from your editor.


Category NinjaTrader 6.5 Indicators 
 
Suggest other entries I might like
Details: Balance Line V2
Category: NinjaTrader 6.5 Indicators 


April 29th, 2010
Size: 3.62 KB
Downloaded: 200 times
Balanced Momentum 5 *
Exported using NT Version 7.0.1000.1

This is an improved version of the momentum indicator.

The n-period momentum is the difference between the close of the last bar and the close n bars ago. When a large bar n periods ago drops out of the momentum calculation, this can create a significant distortion, as it will show as a change in momentum, even if there was no or little price change for the last bar.

To eliminate this problem, the input value n bars ago was replaced with the triangular moving average SMA(SMA(Input, n+1), n+1)[0]. This modification does not change the usability of the momentum indicator, but simply eliminates the distortion.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Balanced Momentum
Category: NinjaTrader 7 Indicators 


December 15th, 2010
Size: 3.54 KB
Downloaded: 1329 times

Keywords: momentum movingaverage tma triangular
bands indicator
A basic band indicator which allows you to pick a period and moving average type and the amount of deviation.


Category MetaTrader 4 Indicators 
 
Suggest other entries I might like
Details: bands indicator
Category: MetaTrader 4 Indicators 


January 3rd, 2010
Size: 2.99 KB
Downloaded: 166 times
Bar at special time
Hi community,
if I trade the ES- or ESTX50-Future I need the close of the previous cash-session to visualize the opening gap.Also as an additional S/R-line for the Future trading.
You can use the "Bar at special time"-Indicator for indicating the Open,High,Low or Close of a time(Zeit)-specified bar of each day.

inputs:
Zeit = closing-time of the bar you want to see
Wert = O , H , L , C or any formula e.g. ((H-L)/2)

It dont work if you use for e.G. Zeit = 1730 on a 1 hour chart.
You have to choose the chartresolution depending on the bar you want to get the data.
If you want to get the data of Zeit = 1732 you need a 2-minute chart or lower, if Zeit = 2215 (close of S&P-cash) you can put it at a 15-min-chart as highest resolution.

the code as txt-file:

//**********
Inputs: Zeit( 1730 ),
Wert( close );
variables: var0(0);
if (time =Zeit ) then var0=Wert else var0=var0[1];

plot1(var0);

//**********

aiti


Category MultiCharts 
 
Suggest other entries I might like
Details: Bar at special time
Category: MultiCharts 


January 11th, 2012
Size: 1.54 KB
Downloaded: 198 times
 



 
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