This is a trading item or a component that was created using QuantShare by one of our members.
This item can be downloaded and used by QuantShare Trading Software.
Trading items are of different types. There are data downloaders, trading indicators, trading systems, watchlists, composites/indices...
You can use this item and hundreds of others for free by downloading QuantShare.
Top Reasons Why You Should Use QuantShare:
Works with US and international markets (stock, forex, options, futures, ETF...)
Offers you the tools that will help you become a profitable trader
Allows you to implement any trading ideas
Exchange items and ideas with other QuantShare users
Our support team is very responsive and will answer any of your questions
We will implement any features you suggest
Very low price and much more features than the majority of other trading software
The Following Watch list is created for weekly entry,While using this object please see to that you have selected the time frame weekly which gives you better results.
The indicators used in this objects are as follows,
1)Mom( ARRAY close, ARRAY timeperiod).{Momentum}.
2)Apo( ARRAY high, ARRAY fastperiod, ARRAY slowperiod, ENUM movingaveragetype).{Absolute Price Oscillator}.
The Momentum indicator provides an indication of a market's velocity The Momentum indicator is used as a trend-following oscillator similar to the MACD This indicator is bullish when it bottoms and turns up and bearish when it peaks and turns down.
EXAMPLE
Mom(close, 14)
The Absolute Price Oscillator shows the difference between two moving averages. The Price Oscillator can use any time periods, unlike MACD indicator. A buy signal is generate when the Price Oscillator rises above zero, and a sell signal when the it falls below zero.
EXAMPLE
Apo(high, 3, 10, _MaSma).
The formula used in this object is,
var1 = Cross(Mom(close,14), 0.00);
var2 = Cross(Apo(high,3,10,_MaSma), 0.00);
AddColumn("1",Cross(Apo(high,3,10,_MaSma), 0.00));
AddColumn("2",rsi(14));
filter = (var1) && (var2);