NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Found 2327 matching entries

Sort by

Entries
Workout for optimal trading performance 5 *
Not kidding, get in shape and trade better:

This is not easy, take your time, you have the rest of your life..


Category Educational 
 
Suggest other entries I might like
Details: Workout for optimal trading performance
Category: Educational 


March 21st, 2010
Size: 3.09 KB
Downloaded: 762 times

Keywords: ztr workout
Renko-Adaptive indicator_ konkop 07.03.2002 2 *
Renko-Adaptive indicator
(based on ATR)
Written by konkop 07.03.2002. -posted elsewhere byTums

note: Set the plot style to Bar High and Bar Low.


Category MultiCharts 
 
Suggest other entries I might like
Details: Renko-Adaptive indicator_ konkop 07.03.2002
Category: MultiCharts 


March 21st, 2010
Size: 962 bytes
Downloaded: 758 times

Keywords: multicharts
Expiration Calendar 5 *
All the expiration dates for all instruments , no need to guess

Category Educational 
 
Suggest other entries I might like
Details: Expiration Calendar
Category: Educational 


March 21st, 2010
Size: 119.58 KB
Downloaded: 436 times

Keywords: soumi71 expiration calendar
Displaced Moving Average with Projection 2 *
Don't know if this will work to just post the text of the file in the description box here. Copy all code below here for indicator or text file attached. Pictures should explain. Indicator works fine.
////////////////////////////////


// Displaced Moving Average with Projection
//


inputs:
ShowProjection(True),
ST_upcol(blue),
ST_dncol(red),
LT_upcol(darkgreen),
LT_dncol(magenta),
Price( Close ),
FastLength( 9 ),
SlowLength( 18 ),
Displace( 0 ) ;

variables:
avg_st( 0 ),
avg_Lt( 0 ) ,
st_diff(0),
lt_diff(0),
st_color(0),
lt_color(0);

avg_st = AverageFC( Price, FastLength ) ;
avg_Lt = AverageFC( Price, SlowLength ) ;

condition1 = Displace >= 0 or CurrentBar > AbsValue( Displace ) ;
if condition1 then
begin

if avg_st > avg_st[1] then st_color = st_upcol
else st_color = st_dncol;

if avg_lt > avg_lt[1] then lt_color = lt_upcol
else lt_color = lt_dncol;


Plot1[Displace]( avg_st, "FastAvg", st_color ) ;
Plot2[Displace]( avg_Lt, "SlowAvg", lt_color ) ;


if Displace <= 0 then
begin
condition1 = avg_st crosses over avg_Lt ;
if condition1 then
Alert( "Bullish alert" )
else
begin
condition1 = avg_st crosses under avg_Lt ;
if condition1 then
Alert( "Bearish alert" ) ;
end ;
end;
end ;


if ShowProjection and Displace > 0 then
begin

st_diff = avg_st - avg_st[1];
lt_diff = avg_lt - avg_lt[1];

for value1 = 1 to Displace
begin
plot1[Displace - value1](avg_st + st_diff* value1 ,"s", black);
plot2[Displace - value1](avg_lt + lt_diff* value1 ,"l", black);
end;
end;


Category MultiCharts 
 
Suggest other entries I might like
Details: Displaced Moving Average with Projection
Category: MultiCharts 


March 21st, 2010
Size: 1.36 KB
Downloaded: 328 times
Fibonacci Bands ver1 4 *
Plots fib bands around an ema you chose.


Category MultiCharts 
 
Suggest other entries I might like
Details: Fibonacci Bands ver1
Category: MultiCharts 


March 21st, 2010
Size: 5.84 KB
Downloaded: 394 times

Keywords: bands fibonacci websouth
3 Bar Reversal 2a 4 *
I dug this up somewhere. You might find it useful.

2 different 3 bar reversal patterns are shown by this indie -

3 Bar Reversal Pattern
BuyColor(Cyan)
SellColor(Magenta)

Low(1)>=Low(2)
Low(3)>=Low(2)
Low(3)<=Low(4)
High>High(1) trigger magic tick
Note : I have deleted one definition of Low>Low(1) in the previous version

+++++++++++++++++++
suri 3 Bar Reversal
BuySuri(Blue)
SellSuri(Red)

Low(1)>Low(2)
High(1)>High(2)
Close(1)>Close(2)
High(3)>High(2)
High>High(3) trigger


Category MultiCharts 
 
Suggest other entries I might like
Details: 3 Bar Reversal 2a
Category: MultiCharts 


March 21st, 2010
Size: 5.99 KB
Downloaded: 618 times

Keywords: bar reversal websouth
Fibonacci Cluster V14 5 *
Fibonacci Cluster Version 14 for Ninja 7 (April 2010)

Exported using NT Version 7.0.0.17, will not run on NT 6.5

Indicator displays Fibonacci retracements and extensions for intraday and daily charts based on swing highs and lows.

Labels: Fib lines labeled A-E are calculated from 5-day primary swing highs or lows, those labeled S refer to a recent swing high and low of order 2 or 3, those labeled Y and Z are calculated from swing lows and today’s high and low, if applicable. Extensions from highs and lows that have been taken out are labeled X, you will also find additional support and resistance from prior swing highs and lows that have been taken out. An example: “D+ 76.4 (28 Jan)” means that prices touching this line have retraced 76.4% within a Fib retracement defined by the swing high from January 28 and the lowest low between this date and the end of the session of yesterday.

Multiple Lines: All Fib values are rounded to full ticks. If several Fib values are rounded to the same price, the indicator will display “Multiple Fíb” and display the number of Fib lines.

Lookback period: The indicator will only take into account Fib retracements within the look back period of the chart. You can increase or reduce the look back period of the indicator via indicator dialogue.

Filter: The filter can be set to values between 0 and 100. Default setting is 85. If a swing low defining a Fibonacci retracement occurred 100 days ago, all lows during the following 15 days will be ignored, only lows during the last 85% of the 100 day range will be used for Fib retracements. If you do not want to use the filter, you may set it to 100.

Select your lines: The indicator will display quite a number of lines, usually too many to use it for trading. It is therefore recommended to either use the short or the long end of the lookback period. If you want to use the short end, leave all lines A to Z selected, but reduce the lookback period of the indicator to 5 or 10 days. If you want to select the long end, set the lookback period to a minimum of 100 days, but unselect the Y and Z lines.


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Fibonacci Cluster V14
Category: NinjaTrader 7 Indicators 


March 21st, 2010
Size: 34.13 KB
Downloaded: 3180 times

Keywords: confluence fibonacci pivots
ALMA (moving Average) 4 *
Hello,

In attempt to create a new kind of Moving Average with some friends/colleagues (because i was a little bit tired of the classical set of MA everybody's use for the last 10 years), we've created this new one (ALMA)..

The ALMA can give some excellent results if you take the time to tweak the parameters (don't need to explain this part, it will be easy for you to find the right setting in less than hour)..

Arnaud L.

Compatibility:
NinjaTrader 7.0: YES - ZTrade101


Category NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: ALMA (moving Average)
Category: NinjaTrader 7 Indicators 


March 21st, 2010
Size: 2.36 KB
Downloaded: 992 times

Keywords: moving average alma
CMA for Market Delta 4 *
guys,

This is the collective MA ported for Market Delta

Enjoy

ben


Category The Elite Circle 
 
Suggest other entries I might like
Details: CMA for Market Delta
Category: The Elite Circle 


March 19th, 2010
Size: 1.31 KB
Downloaded: 593 times

Keywords: benbrooke bmt bmtcma cma marketdelta collective
ADXVMAv1.05.2 5 *
This is a NO REPAINT version courtesy Art Roonius. Everything else is just the original ADXVMAv1.05.1 alert version.


Category The Elite Circle 
 
Suggest other entries I might like
Details: ADXVMAv1.05.2
Category: The Elite Circle 


March 19th, 2010
Size: 5.95 KB
Downloaded: 1844 times

Keywords: adx adxvma eone
 



 
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