NexusFi: Find Your Edge


Home Menu

 



Categories Help    






Search Results
Found 2329 matching entries

Sort by

Entries
US Dollar Index Multicharts Indicator
After not being able to find a suitable source for this data without another data subscription, I decided to make my own indicator. It calculates the dollar index from 6 forex pairs. Pairs must be entered in the correct sequence to have it calculate properly. I have the six pairs entered and then hidden on the chart so that only the indicator shows.

Indicator txt code:

{US Dollar Index Calculated from Currency Pairs EURUSD, USDJPY, GBPUSD, USDCAD, USDSEK, and USDCHF.

Version 1.0

data1=EURUSD;
data2=USDJPY:
data3=GBPUSD;
data4=USDCAD;
data5=USDSEK;
data6=USDCHF;

Instruments must be entered in above order.

Formula for calculation:

USDx = 50.14348112 * EURUSD^(-0.576) * USDJPY^0.136 * GBPUSD^(-0.119) * USDCAD^0.091 * USDSEK^0.042 * USDCHF^0.036 }

Inputs:

EURUSD( Close Data1 ),
USDJPY( Close Data2 ),
GBPUSD( Close Data3 ),
USDCAD( Close Data4 ),
USDSEK( Close Data5 ),
USDCHF( Close Data6 );

Vars:

USDx(0);

USDx = 50.14348112*Power(EURUSD,(-0.576))*Power(USDJPY,0.136)*Power(GBPUSD,(-0.119))*Power(USDCAD,0.091)*Power(USDSEK,0.042)*Power(USDCHF,0.036);

Plot1 ( USDx, "USDx" ) ;


Category MultiCharts 
 
Suggest other entries I might like
Details: US Dollar Index Multicharts Indicator
Category: MultiCharts 


November 28th, 2014
Size: 3.24 KB
Downloaded: 157 times
Using Fisher Transform Pdf
The pdf file for explain the fisher transform and how to use it.

Category MultiCharts 
 
Suggest other entries I might like
Details: Using Fisher Transform Pdf
Category: MultiCharts 


July 8th, 2009
Size: 118.53 KB
Downloaded: 409 times

Keywords: multicharts
Value Charts V1 NT8b9 4 *

Value Charts V1 NT8b9

Promoted by David Stendahl in
'Dynamic Trading Indicator: Winning with Value Charts and
Price Action Profile'.
Popularized by the Hubert Senters from TTM.

Stendahl says:
"Value Charts use
dynamic volatility units to effectively adjust to changing market volatility."

Concept:

The value chart is divided into zones.
4 to -4 is fair value. Avoid buying/shorting here.
4 to 8 is overbought/expensive.
-4 to -8 is oversold/good value.

Strategies are to fade the Value Chart extremes in a choppy market, and to buy dips (-8) in an uptrend.

PDF of Stendahl interview included in .zip file, so you must extract the file first before importing!




Category NinjaTrader 8 Indicators and More 
 
Suggest other entries I might like
Details: Value Charts V1 NT8b9
Category: NinjaTrader 8 Indicators and More 


February 21st, 2016
Size: 248.03 KB
Downloaded: 1878 times
Van Tharp 5 *
Here are some of the freebies from the Van Tharp website...

Stop worrying yourself out of profits


Category Educational 
 
Suggest other entries I might like
Details: Van Tharp
Category: Educational 


July 24th, 2010
Size: 150.65 KB
Downloaded: 426 times
Van Tharp, Make an honest appraisal
This one is about making an honest appraisal of yourself.

Category Educational 
 
Suggest other entries I might like
Details: Van Tharp, Make an honest appraisal
Category: Educational 


July 24th, 2010
Size: 119.32 KB
Downloaded: 435 times
Variable MA (VIDYA) 5 *
This old standby/classic/war horse has been recoded with every efficiency trick I can think of to minimize CPU use. It looks like it plots the same as the original, but I haven't checked. That can be your job.

Efficient indicators ensure the utmost in responsiveness with rock solid stability and dependability. Also added error trapping... just in case.

The techniques used include:
  • - incorporating all supporting calculations into the indicator to eliminate calls to external classes SUM and CMO.
  • - calculating only on FirstTickOfBar the variable values that depend only on previous bar data.
  • - removing redundant processing steps, eliminating intermediate, locally declared variables and combining calculations into a minimal number of algebraic expressions.
  • - allowing OnBarUpdate to execute only when it will affect the output result.
  • - providing the option of disabling the setting of plot values and colors when called by another indicator or strategy.
  • - providing a public data series to give the output values when called by another indicator or strategy, even it this indicator is running in the background with ShowPlot false, with no plot values being set.




The Variable Moving Average (VMA) or Volatility Index Dynamic Average (VIDYA), developed by Tushar S. Chande, uses a Volatility Index to adjust the smoothing period. When prices are congested the average slows down and when prices are trending the average speeds up (note steps in plot).

The indicator is completely self contained. There are no calls to external indicators.

If you call this indicator from another indicator or from a strategy, set the ShowPlot parameter to false to avoid wasting resources setting the values and colors of plots that are not being displayed, and get your outputs from the public dataseries that was provided specifically for that purpose.


Category The Elite Circle 
 
Suggest other entries I might like
Details: Variable MA (VIDYA)
Category: The Elite Circle 


January 21st, 2014
Size: 3.77 KB
Downloaded: 803 times
Variable Moving Average 5 *
Another moving average variation.


Category MetaTrader 4 Indicators 
 
Suggest other entries I might like
Details: Variable Moving Average
Category: MetaTrader 4 Indicators 


January 3rd, 2010
Size: 5.24 KB
Downloaded: 677 times
Velocity OrderFlow 1.0 for Multicharts 4 *
Here is the Velocity OrderFlow for Multicharts. It's meant to be used with Footprint charts.
It provides the bid volume, ask volume, delta, and duration of the bar in seconds.
If the duration of the bar is beneath a certain threshold it will plot an arrow over or under the bar
depending on if the signal is bearish or bullish. This is the Velocity arrow. I use Volume charts or contract charts. But it could be used with tick charts as well. I included an indicator called TaiChi it's a good indicator. It's a modified supertrend with no extremes just the middle line.


Test it out, I just coded it in a day so it could have some bugs.


Come discuss the Velocity OrderFlow Tools with me at my trading journal.
https://nexusfi.com/trading-journals/46850-elitecamper-s-micro-trading-journal.html


Category MultiCharts 
 
Suggest other entries I might like
Details: Velocity OrderFlow 1.0 for Multicharts
Category: MultiCharts 


March 22nd, 2022
Size: 32.29 KB
Downloaded: 137 times

Keywords: footprint multicharts orderflow velocity
VEMA Indicator for NT8 3 *
This is another Exponential Moving Average indicator that shows the average value of a security's price over a period of time. This is converted from NT7 per this thread:

https://nexusfi.com/elite-circle/35208-converting-ninjatrader-7-indicators-ninjatrader-8-free-190.html


Category NinjaTrader 8 Indicators and More 
 
Suggest other entries I might like
Details: VEMA Indicator for NT8
Category: NinjaTrader 8 Indicators and More 


July 18th, 2023
Size: 2.32 KB
Downloaded: 76 times
Vertical Horizontal Filter 5 *
The VHF indicator can be a useful tool as it attempts to measure the “trendiness” of a market. It reveals the strength of a trend, not the trend direction. This filter compares the sum of one-day price changes within a specific time period to the range between the high and low prices over the specified period. The VHF values help identify whether prices are in a trending phase as well as the degree or strength of a trend, where the trader should use trend-following indicators, or if the prices are in a trading range market, a case where congestion-phase indicators (such as
oscillators which work well in trading range markets) should be used.

In theory, the VHF indicator can be used in the following three ways:

1. In determining whether a particular market condition is trending or is in a congestion/non-trending phase: A rising VHF line indicates a developing trend; a falling VHF line indicates prices may be entering a trading range market.

2. To determine the degree or strength of a trend: The higher the VHF line, the higher the degree of trending. A falling line indicates a trend is weak.

3. The use of the VHF as a contrarian indicator: Relatively low VHF values can indicate that prices can be expected to break out of the congestion phase and start trending. On the other hand, relatively high VHF values indicate that a trending phase may be coming to a close and that the market is getting ready to enter a congestion phase.

COMPATIBILITY:
NinjaTrader 6.5: YES
NinjaTrader 7.0: YES


Category NinjaTrader 6.5 Indicators  NinjaTrader 7 Indicators 
 
Suggest other entries I might like
Details: Vertical Horizontal Filter
Category: NinjaTrader 6.5 Indicators  NinjaTrader 7 Indicators 


December 6th, 2009
Size: 5.92 KB
Downloaded: 1944 times

Keywords: trend ninjatrader chop sideways congestion gregid
 



 
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