| Formula | Short information |
|---|
|
| % B of Bollinger Bands With Adaptive Zones | Anthony Faragasso | 2001-12-20 14:22:02 | Level: basic indicator (11 comments) | Details |
| %B of Bollinger Bands With Adaptive Zones. The % B raw figure
Gives Percentage of where the close is in relation to the bands.
High reading ( Upper band ) , Low reading (Lower band )
I have added the Adaptive Zones oscillator to help pinpoint possible Buy and sell areas.
... |
| %b indicator - related bollinger bands | ajay | 2007-03-30 09:10:11 | Level: medium indicator (2 comments) | Details |
| %b - indicator in relation to bollinger bands. With this we can easily detect patterns like 'W' 'M' patterns, the main use of this indicator is - divergence detection between price and indicator - such as unconfirmed low / high. Some times RSI is not detecting divergence but %b will do this.... |
| 'R' Channel | Mr Valley | 2004-02-03 02:15:02 | Level: advanced system,indicator (4 comments) | Details |
| /* 'R' Channel */
/*Author Marc Valley */
Var = 4;
M1 = MA(Max(H,Var ),2);
L1 = MA(Min(L,Var ),2);
K = M1 - L1;
Num1 = sqrt(K);
Dem1 = sqrt(1.00+K);
H1 = (Num1/Dem1)/2;
Num2 = sqrt(1.0);
Dem2 = sqrt(1+K);
H2 = ((Num2/Dem2)/2) *C;
H3 =(H1 + H2) ;
MAH2MA =MA(L - (H2/100),Var );
MAH3M... |
| 10-20 Indicator | Dennis Skoblar | 2005-06-14 04:09:34 | Level: basic indicator (2 comments) | Details |
| Shows how many points the stock has gone in a 20 day (one month) period. The ideal would be for a stock to move 10 points in a 20 day period.... |
| 2 Timeframes Candlestick Bar Chart | Jorgen Wallgren | 2009-07-07 02:27:54 | Level: medium indicator (5 comments) | Details |
| Specially designed for use in day trading AND to save chart space. This chart will displays 2 sets of candlestick bars. One for the time Interval set for your chart- for example 1 Minute. The higher timeframe candlestick bars are created by using gfx Low-level graphics and will display
according ... |
| 3 Price Break | Bhcombo | 2004-12-05 17:16:00 | Level: medium indicator (7 comments) | Details |
| 3 Price Break can be used to verify trend and to set trailing stops.
This is a work in progress. I pefer to see the 3PB lines graphed against a candlestick chart versus the traditional 3PB representation. This will graph the price break line as green in an uptrend and red in a down trend. There a... |
| 30 Week Hi Indicator - Calculate | Geoff Mulhall | 2003-05-03 22:12:35 | Level: semi-advanced exploration,indicator (2 comments) | Details |
| Just as the advance decline line gives an indication of the overall strength of the market, so does the number or stocks makeing new 30 week high's. Refer Weinstein's "The Secret of Profiting in Bull and Bear Markets".
The attached scan ( _s.afl file) calculates two indices. The first index calcu... |
| 30 Week Hi Indicator - Display | Geoff Mulhall | 2003-05-03 22:17:05 | Level: semi-advanced indicator (0 comments) | Details |
| Refer 30 Week High Indicator - Calculate
The attached indicator builder afl ( _i.afl file ) plots the indicator calculated by the ( _s.afl file ). ... |
| 4% Model - Determine Stock Market Direction | MTR Investors Group | 2009-06-20 02:46:18 | Level: medium system (5 comments) | Details |
| Model discovered by Ned Davis. This is used to determine the direction of the stock Market. Once you know the direction the go LONG/SHORT an index ETF or your
Favorite stock. This model was made know by Martin Zweig in his book Winning on Wall Street. ... |
| 52 Week New High-New Low Index | Dennis Skoblar | 2005-07-11 10:14:58 | Level: basic exploration,indicator (1 comments) | Details |
| Calculates new 52 week High's vs new 52 week lows. Input a Date 5 years back to the current Date in the Range section of the Analysis Window AND click the From button. In the Apply To section, click the Use Filter button AND click the Define > Include > Group > Stock to scan stocks ONLY. Right clic... |
| Absolute Breadth Index | Tomasz Janeczko | 2001-06-16 07:36:16 | Level: basic indicator (1 comments) | Details |
| The Absolute Breadth Index (ABI) is a market momentum indicator that was developed by Norman G. Fosback. The ABI shows how much activity, volatility, and change is taking place on the New York Stock Exchange while ignoring the direction prices are headed. You can think of the ABI as an "activity ind... |
| AC+ acceleration | Steve Wiser | 2001-07-05 19:08:13 | Level: semi-advanced indicator (2 comments) | Details |
| Supports William's Alligator Trend Following system... |
| accum/dist mov avg crossover SAR | Jeff Parent | 2002-07-31 16:21:24 | Level: semi-advanced indicator (5 comments) | Details |
| Similar to a volume weighted price support/resistance line, uses the accumulation / distribution indicator to set stop line. vbscript required to calculate variable lookback period.... |
| AccuTrack | Salil V Gangal | 2003-09-12 12:50:01 | Level: basic indicator (0 comments) | Details |
| // AccuTrack Compares performance of two securities
// The basic idea is to switch between the two securities
// AccuTrack was developed by FastTrack (fasttrack.net)
... |
| Adaptave Zones O/B & O/S Oscillator | Anthony Faragasso | 2001-12-27 10:22:54 | Level: medium indicator (7 comments) | Details |
| Automatically Adjusts the Overbought and Oversold levels based on past performance.( Lookback ).
Set up to be used with AmiBroker PrePackaged indicators,RSI,CCI,STOCHK,STOCHD,MFI,ULTIMATE,ROC,
Also, Added RSI of MACD indicator.
User Friendly, Set with Vairable Identifiers and information in th... |
| Adaptive Laguerre Filter, from John Ehlers | Mich | 2006-12-01 14:19:58 | Level: basic indicator,function (0 comments) | Details |
| Laguerre Filtering, in its adaptive version (alpha is automaticaly adapted depending the error of filtering).
Can be apply to RSI or any other datas like the another Laguerre version on that AFL library :
http://www.amibroker.com/library/detail.php?id=450
To do :
- Kautz Filter, they are generic... |
| Adaptive Price Channel | Denis Dube | 2004-04-29 12:32:15 | Level: medium indicator (1 comments) | Details |
| This price channel starts with a lookback period of 20.
The lookback period changes according to volatility, measured by a 30 period standard deviation of prices.
A maximum and a minimum lookback period are defined.
... |
| Advanced MA system | KingK | 2007-10-12 09:06:27 | Level: semi-advanced system (5 comments) | Details |
| Advanced MA system
I have tried hard for this and it gives very good results in the Greek Stock Market. Any recommendations or improvements are welcomed...
thanks
KingK
... |
| Advanced Trend Lines with S & R | AbdulKareem | 2007-10-16 05:42:11 | Level: semi-advanced indicator (8 comments) | Details |
| Trend lines and Support and resistance based on previous lows and Highs.... |
| Advisory NRx price chart display. | TohMz | 2008-05-26 00:44:11 | Level: basic indicator (2 comments) | Details |
| Consolidate all NR1(Inside Day), NR4 and NR7 ideas from Amibroker & Metastock from all forums.
So far most of the formular do the exploration for you, but no charting display on NR1 and NR4 OR NR7 had done
... |
| ADX Indicator - Colored | Tommy Beard | 2005-01-25 00:12:58 | Level: basic indicator (0 comments) | Details |
| Easily see rise or fall of the ADX with this colored ADX Line. The period default is 10 but easily adjusted using the parameter feature.... |
| ADXbuy | goldfreaz | 2002-04-21 21:12:36 | Level: medium system (2 comments) | Details |
| Buy: slope ADX > slope ADX threshold and
ADX > ADX threshold + ADX histeresis and
PDI > ADX + DI histeresis and
slope PDI - slope MDI > slope DI threshold and
PDI > ADX
Sell: {ADX > ADX threshold - ADX histeresis and
PDI < ADX - DI histeresis} or
MDI ... |
| ADXR | Jayson Casavant | 2002-11-07 00:51:21 | Level: basic indicator (1 comments) | Details |
| Developed by Wells Wilder ADXR is a component of the Directional Movement System. The indicator is used to determine if the market under study is trending or consolidating. According to Wilder values greater than 25 indicate the use of Trend following systems or indicators. Values less than 25 may b... |
| AFL Editor | Geoff Mulhall | 2003-01-01 04:18:09 | Level: advanced commentary (7 comments) | Details |
| A excellent (free) programmers editor called ConTEXT is available from
http://www.fixedsys.com/context/
For a large AFL programming task this is very useful since ConTEXT can be made AFL sensitive by copying the attached file to c:\program files\context\highlighters.
Keywords, functions ar... |
| AFL Example | Graham Kavanagh | 2005-08-12 03:45:59 | Level: basic exploration,indicator (7 comments) | Details |
| There are many questions from beginners. I have tried to create a sample system that incorporates basic and useful items.
This is an AFL for Chart, Scan, Backtest and Explore
The system for Buy/Sell is just off the top of the head as an example only.... |
| AFL Example - Enhanced | Brian Fenske | 2005-08-14 15:02:31 | Level: basic system,exploration,indicator,commentary (3 comments) | Details |
| Graham did a nice job of capturing much of the essence of a basic script. In working with a group of programmers we've come up with some enhancements to his formula that makes it useful in the Automatic Analysis (AA) component.... |
| AFL highlighter for ConTEXT (free editor) | Dave Merrill | 2004-02-07 22:41:26 | Level: semi-advanced system,exploration,indicator,commentary,function (1 comments) | Details |
| ConTEXT is a really good freeware programmer's editor, available at http://www.fixedsys.com/context. This file teaches it AFL's keywords, so it can color and format them like AmiBroker does. I often keep my standard AFL #include file open in it while working in AB.
Since there doesn't appear to b... |
| AFL highlighter for ConTEXT (free editor) | Dave Merrill | 2004-02-14 08:19:59 | Level: semi-advanced system,exploration,indicator,commentary,function (1 comments) | Details |
| ConTEXT is a really good freeware programmer's editor, available at http://www.fixedsys.com/context. This file teaches it AFL's keywords, so it can color and format them like AmiBroker does. I often keep my standard AFL #include file open in it while working in AB.
Since there doesn't appear to b... |
| AFL highlighter for ConTEXT (free editor) | Larry McNeese | 2006-06-09 02:29:56 | Level: semi-advanced system,exploration,indicator,commentary,function (11 comments) | Details |
| I just updated my ConTEXT Editor file and thought I would share the work that was started with Geoff Mulhall and Dave Merrill. I copied and pasted the complete list of words from AB's website using Notepad and Excel to trim the list. Then I pasted just the list of words to AB's Formula Editor to Spe... |
| AFL Timing functions | Herman van den bergen | 2005-02-19 11:48:19 | Level: semi-advanced function (0 comments) | Details |
| Tested with AmiBroker 4.69.0 beta. A few Second-timing functions for general use: GetSecondNum(), GetElapesedSeconds and GetBarsSecsLeft. Copy to indicator, Insert, and open the Param window to test the elapsed time function.... |
| AFL to Python COM Link | Bruce Peterson | 2008-02-01 19:29:16 | Level: advanced showemail,function (1 comments) | Details |
| The AFL documentation shows how AFL may be linked to external programs using the
COM (common object model). An example is provided for implementing the IIF (infinite impulse filter)
in Visual Basic and then calling the method from AFL. Python is a modern object oriented
language with extensive su... |
| AFL-Excel | Witold Dabrowski | 2002-08-31 06:29:37 | Level: semi-advanced exploration (2 comments) | Details |
| This example show how to control Excel directly from the AFL script via OLE-Automation interface. In this script I count %DD and plot Equity and %DD charts in Excel.
In script there is commentary in polish - sorry ;-)... |
| AFL_Glossary_1 | Dennis Brown | 2008-10-11 18:10:25 | Level: advanced commentary (0 comments) | Details |
| Release#5 Template and string functions
Put this database text file ( AFL_Glossary_1.afl ) into a folder called AFL_Glossary in your main AmiBroker Folder. This data is used by the AFL_Glossary_Converter program.
This is just an experiment for now.
... |
| AFL_Glossary_2 | Dennis Brown | 2008-10-11 18:12:26 | Level: advanced commentary (0 comments) | Details |
| Release#5 AFL operators
Put this database text file ( AFL_Glossary_2.afl ) into a folder called AFL_Glossary in your main AmiBroker Folder. This data is used by the AFL_Glossary_Converter program.
This is just an experiment for now.
... |
| AFL_Glossary_3 | Dennis Brown | 2008-10-11 18:14:13 | Level: advanced commentary (0 comments) | Details |
| Release#5 AFL keywords
Put this database text file ( AFL_Glossary_3.afl ) into a folder called AFL_Glossary in your main AmiBroker Folder. This data is used by the AFL_Glossary_Converter program.
This is just an experiment for now.
... |
| AFL_Glossary_Converter | Dennis Brown | 2008-10-11 18:07:48 | Level: advanced indicator,commentary (0 comments) | Details |
| Release #5. This AFL program is to aid in the AFL Glossary Project. Generates formated TXT or RTF Documents from Glossary database files. Will also sort and filter entries.
#5 Adds a Functional Hierarchical Listing Option.
Put database text files listed into a folder called AFL_Glossary in yo... |
| AFL_Glossary_Groups | Dennis Brown | 2008-10-11 17:59:54 | Level: advanced commentary (0 comments) | Details |
| Release#5 Glossary Functional Groups Hierarchy
Put this database text file ( AFL_Glossary_Groups.afl ) into a folder called AFL_Glossary in your main AmiBroker Folder. This data is used by the AFL_Glossary_Converter program.
This is just an experiment for now.
... |
| Against all odds | hostyle | 2001-06-20 13:49:09 | Level: medium system,exploration,commentary (24 comments) | Details |
| Against all odds. Written by Thierry HUITEL. Based on Jim Varney's work-- CANDLESTOCHASTICS-- , and all the amibroker group :-).This Exploration is a scan for 24 different buy or sell signals that selects days when several bullish or bearish indicators are triggered at the same time. ... |
| AJDX system | Jaco Jonker | 2001-06-18 05:06:17 | Level: basic system (0 comments) | Details |
| This is a trading system based on the ADX line and should only be used as a basic exploration to determine the direction of a trend. The Buy indicator is of most value and changes to fixed variables can be done to fit different markets.... |
| Alert Output As Quick Rewiev | 3N | 2003-04-14 15:56:13 | Level: basic exploration (1 comments) | Details |
| Alert Output As Quick Rewiev... |
| ALJEHANI | MACD_ ALJEHANI | 2007-10-08 13:59:25 | Level: basic indicator (1 comments) | Details |
| _SECTION_BEGIN("MACD");
r1 = Param( "Fast avg", 12, 2, 200, 1 );
r2 = Param( "Slow avg", 26, 2, 200, 1 );
r3 = Param( "Signal avg", 9, 2, 200, 1 );
Plot( ml = MACD(r1, r2), StrFormat(_SECTION_NAME()+"(%g,%g)", r1, r2), ParamColor("MACD color", colorRed ), ParamStyle("MACD style") );
Plot( sl = ... |
| Alpha and Beta and R_Squared Indicator | Anthony Faragasso | 2002-02-12 13:38:37 | Level: semi-advanced indicator (3 comments) | Details |
| Alpha, Beta and R_Squared, Indicator plots the Alpha and Beta and produces a read
out of values in the title bar of the Alpha, Beta and R_Squared. If you want to Plot the
R_Squared remove the slashes // in front of all Graph2 references....... |
| An n bar Reversal Indicator | Brian Wild | 2006-10-15 04:40:12 | Level: basic indicator (5 comments) | Details |
| An n Bar Reversal Program
The theory says that this indicator gives reliable signals of strong trends.
Its disadvantage is that the signal can be a little late, but is offset by its reliability.
An uptrend is assumed to be in place if todays high is higher than those
of the previous n days,and a... |
| Analytic RSI formula | Dimitris Tsokakis | 2001-12-22 08:05:37 | Level: semi-advanced indicator (3 comments) | Details |
| RSI is an interesting transformation and may be applied
to any variable, not only internally supposed Close.
For this purpose we give here the analytic code for RSI.
To obtain an RSI transformation of another variable Var,
just replace C with Var.
Example:
To find the 14-day RSI of Stochd(14):... |
| Andrews Pitchfork | Bob Johnson | 2005-08-07 08:34:34 | Level: semi-advanced indicator (7 comments) | Details |
| Uses Peak() & Trough() to determine 3 pivot points to use in plotting Andrews Pitchfork. Params: zig pct for peak and trough, look back before using peak/trough, no. of bars to extend pitchfork, shift to move pitchfork up/down, angle limit to filter out steep pitchforks, background and pitchfork co... |
| Andrews PitchforkV3.3 | Bob Johnson | 2006-09-14 21:50:55 | Level: semi-advanced indicator (4 comments) | Details |
| Compared to the original Andrews this version corrects a < vs <= bug and determines when a Zig() peak/trough is actually known instead of using a fixed look back period.... |
| Animated BackGround | SkyBlue | 2008-11-14 00:41:34 | Level: basic function (1 comments) | Details |
| This a pretty basic codes, recently I made using Amibroker help file,I don\'t know whether you already have it!
The codes can be added in any AFL for changing the Chart\'s background color every second. Regards.... |
| Animated BackGround 1.1 | SkyBlue | 2008-12-01 16:50:34 | Level: basic function (0 comments) | Details |
| This a pretty basic codes, recently I made using Amibroker help file,I don\'t know whether you already have it!
The codes can be added in any AFL for changing the Chart\'s background color every second.
Again, I have added a Parameter code by which You can adjust the Brightness of the background ... |
| Another FIb Level | Sggin | 2006-02-06 10:29:54 | Level: basic indicator (0 comments) | Details |
|
Based on Aron Pipa's formula "Automatic Fib Levels" , December, 11, 2005
I changed the formula around a little so u can select the fib lines in a large timeframes , eg daily, and see them in smaller times frames like 5 min, so you can see major retracement levels, ... |
| AO+ Momentum indicator | Steve Wiser | 2001-07-05 19:06:27 | Level: semi-advanced indicator (1 comments) | Details |
| Supports the William's Alligator Trend following system... |
| AO+Momentum | Ilya Gavrilin | 2008-07-11 09:41:50 | Level: semi-advanced indicator (0 comments) | Details |
| Awesome oscillator+Momentum for Williams Alligator system II... |
| Appel's ROC or The Triple Momentum Timing Model | Mubashar Virk | 2007-01-31 04:00:28 | Level: basic exploration,indicator (4 comments) | Details |
| This is a buy & Hold indicator. I have coded Mr. Appels indicator as per his book. However, I have added BUY and Sell conditions as a point of reference only. Personally, I would use it as a exploration to identify possible long positions. Mr. Appel advice is, "There is only one buy rule and only on... |
| Application of Ehler filter | goldfreaz | 2004-01-05 12:58:20 | Level: semi-advanced indicator (1 comments) | Details |
| Ehler filter using volume, momentum, rate of momentum for weighting.... |
| Aroon | Tomasz Janeczko | 2001-06-16 07:42:21 | Level: medium indicator (10 comments) | Details |
| Aroon is Sanskrit word meaning "dawn's early light" or the change from night to day. The Aroon indicator allows you to anticipate changes in security prices from trending to trading range. The indicator uses two lines: Aroon Up and Aroon Down. Aroon Down is a measure of how close the current bar is ... |
| Aroon Indicators | Marek Chlopek | 2001-12-20 03:36:38 | Level: basic indicator (1 comments) | Details |
| A time price oscillator.... |
| Aroon The Advisor | H.AL-OTAIBI | 2007-12-07 09:09:57 | Level: advanced indicator (3 comments) | Details |
| // Aroon Indicator
// The Advisor october-8-2007
_SECTION_BEGIN("Aroon");
if( ParamToggle("Tooltip Shows", "Aroon|Prices" ) )
{
ToolTip=StrFormat("Open: %g\nHigh: %g\nLow: %g\nClose: %g (%.1f%%)\nVolume: "+NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 )));
}
Aroonswitch = ParamTogg... |
| AR_Prediction.afl | Mich. | 2006-11-18 20:09:10 | Level: basic indicator,function (10 comments) | Details |
| AR MODELING (Burg and Yule-Walker method are implemented)
Main features :
- Prediction : calculate future datas based on past data, past volume and past low/high
- Spectral analysis : compute sharp and clean spectrum of the data and plot it in Decibels
- Find up to 10 or more dominant cycles fro... |
| ASX Maintenance Tools | Geoff Mulhall | 2007-04-23 19:26:41 | Level: medium showemail,function (2 comments) | Details |
| I've created 3 Excel macros with a single easy GUI interface for the
following
1. End of Day Data Load - to be used in an emergency when your usual
data supplier has a problem
2. Industry Update - to ensure each stock is correctly assigned to the
correct Sector and Industry
3. Non Trading ... |
| ATR Study | steve wiser | 2001-11-23 18:09:31 | Level: medium system,exploration,indicator (24 comments) | Details |
| This was simply a study at seeing how I could use the ATR function in a trading system.
System settings:
25 $ per trade
Buy and sell on signal one day delay for both
Start equity of $10000
Long trades only on daily selection
Stops controlled by code
... |
| Auto Analysis Closing Price Reversal | Larry Lovrencic | 2001-09-04 01:54:33 | Level: basic exploration (0 comments) | Details |
| Find Closing Price Reversals using automatic analysis... |
| Auto Analysis Hook Reversal | Larry Lovrencic | 2001-09-04 01:50:18 | Level: basic exploration (0 comments) | Details |
| Find Hook Reversals using automatic analysis
... |
| Auto Analysis Island Reversal | Larry Lovrencic | 2001-09-09 20:28:18 | Level: basic exploration (0 comments) | Details |
| Find Island Reversals using automatic analysis... |
| Auto Analysis Key Reversal | Larry Lovrencic | 2001-09-04 01:51:44 | Level: basic exploration (0 comments) | Details |
| Find Key Reversals using automatic analysis... |
| Auto Analysis Open/Close Reversal | Larry Lovrencic | 2001-09-04 01:53:15 | Level: basic exploration (0 comments) | Details |
| Find Open/Close Reversals using automatic analysis... |
| Auto Analysis Pivot Point Reversal | Larry Lovrencic | 2001-09-04 02:39:26 | Level: basic exploration (0 comments) | Details |
| Find Pivot Point Reversals using automatic analysis... |
| Auto Analysis Short-term Reversals Exploration | Larry Lovrencic | 2001-09-09 20:35:25 | Level: basic exploration (4 comments) | Details |
| Find Short Term Reversals - Closing Price, Hook, Island, Key, Open-Close and Pivot Point Reversals using automatic analysis... |
| Auto Export to Gif | Rohit Bhuravane | 2006-12-08 12:19:43 | Level: basic function (9 comments) | Details |
| this is a javascript which when double clicked will export symbol in current active window to a gif file on ur c drive... |
| Auto Trade Step by Step | Reinsley | 2008-10-02 13:34:02 | Level: basic showemail,function (4 comments) | Details |
| Auto trade
Buttons to send orders to IB paper account and send trade log to text file
Buy, Sell, Short, Cover, Reversal, CloseAll
Control Market Open and Market Close to place orders and Week End... |
| Auto-Optimization Framework | Dave Merrill | 2003-10-22 11:58:47 | Level: advanced system,exploration,function (3 comments) | Details |
| this is a backtest framework that continously and automatically optimizes settings for a trading rule you provide. it chooses settings that measure best over a selectable lookback period. this re-optimization can be done every bar, at a user-definable interval, or once at the start of trading. it re... |
| Automatic trading scripting tool | Hans | 2004-10-30 08:36:26 | Level: basic system,function (6 comments) | Details |
| This is not an indicator, but a tool useful for automatic trading.
I hope you will find it useful
http://www.autoitscript.com/autoit3/
link to support forum
http://www.autoitscript.com/forum/index.php?s=&showforum=2... |
| Automatic Trend-line | Tomasz Janeczko | 2001-06-16 07:56:58 | Level: medium indicator (16 comments) | Details |
| A trend line is a sloping line drawn between two prominent points on a chart. Rising trend lines are usually drawn between two troughs (low points) to illustrate price support while falling trend lines are usually drawn between two peaks (high points) to illustrate upside price resistance. The conse... |
| AutoTrade using an Exploration | Peter Kuskopf | 2008-12-10 16:39:51 | Level: semi-advanced exploration (0 comments) | Details |
| This AFL file shows how to create an AutoTrade system in an Exploration, as an alternative to trading within a Chart Indicator. The advantage is the ability to apply the rules to a watchlist or complete database in a single AFL formula.
It is a skeleton only, the actual trading rules are dummies.... |
| AutoTrader Basic Flow - updated April 15, 2009 | Barry Scarborough | 2009-04-15 11:04:17 | Level: advanced system (0 comments) | Details |
| I corrected some errors but didn\'t add any function. I don\'t plan to add function to this program. It is placed here for training purposes only and as a basis for your further development. This version is set to trade stocks. For futures and Forex changes will be needed and you must understand the... |
| AutoTrader Basic Flow - updated Nov 18, 2008 | Barry Scarborough | 2008-11-18 16:27:15 | Level: advanced showemail,function (11 comments) | Details |
| Updated version
This is a fully functional auto trading program for use with Interactive Brokers TWS. It is designed to trade futures contracts but can be modified, by you, for any ticker. It is provided as is and without support. Expect bugs! See the setup instructions at the bottom of the progr... |
| Average Dollar Price Volatility Exploration | Aviator33 | 2008-02-07 04:06:42 | Level: basic exploration (0 comments) | Details |
| Simple exploration showing the Average Dollar Price Volatility (ADVP) of slected stocks. Calculations are only based
on high/low relationships so is mostly suited for intraday trading. For swing or position trading a similar exploration using ATR
or similar volatility indicator should be used as i... |
| Average Price Crossover | Bobby Kular | 2007-04-21 03:40:00 | Level: basic indicator (3 comments) | Details |
|
This AFL consists of all good averages known to me. It is an indicator in which price becomes green when price crosses above average and vica versa.
The name of average also tells the time period setting on 60 min time frame.
... |
| Awsome Oscilator | HDK | 2009-06-04 04:28:57 | Level: basic system,indicator (0 comments) | Details |
| Awsome Oscilator formula with basic signals as on www.metaquotes.net... |
| babaloo chapora | babaloo | 2009-08-17 09:20:19 | Level: basic system (3 comments) | Details |
| i use to do intra day trading in Indian stocks & commodity market.... |
| Bad Tick Trim on 5 sec database | Dennis Brown | 2007-08-11 19:58:46 | Level: medium indicator (0 comments) | Details |
| This chart is used to generate clean data for another chart.
Link this chart to another one.
This runs on a 5 second database to trim bad ticks.
Clean data is saved to "~SA_Clean" ATC ticker every pass.
Linked chart must replace OHLCV arrays. Place the following AFL at the beginning of the lin... |
| Balance of Power | Not Too Swift | 2005-05-14 23:17:21 | Level: medium indicator (21 comments) | Details |
| The balance of power (BOP) indicator measures the strength of the bulls vs. the bears by assessing the ability of each to push price to an extreme level.... |
| balance of power | abdula | 2005-11-18 10:36:43 | Level: basic indicator (6 comments) | Details |
| 54... |
| Baseline Relative Performance Watchlist charts V2 | Michael.S.G. | 2003-08-06 02:10:25 | Level: basic indicator (1 comments) | Details |
| A Slightly more streamline version of the original.
This revision uses the currently selected ticker as the baseline. Watchlist May be selected via CTRL-R Param Dialog.
This example plots lines for each entry in watchlist.
... |
| BatMan | Fred Tonetti | 2005-08-10 23:52:43 | Level: advanced showemail,function (0 comments) | Details |
| A Web based form and .vbs AB/AA automation processor for running batches of jobs (AFL's) ... Output is all web based on your PC. Detailed page includes the relevant chart and results from the AA window. Several levels above this also exist including a Job Log, Job Signals and a Batch Summary. ... |
| BB squeeze | Vladimir Gaitanoff | 2005-03-30 07:28:50 | Level: advanced indicator (8 comments) | Details |
| This is a volatility indicator. It can be used to determine the periods of extremes of low volatility which usually followed by big moves. Indicator does not show direction of the trade, only timing. Some other aspects of technical/fundamental analysis should be employed for direction.
There is a... |
| BEANS-Summary of Holdings | Ken Close | 2008-09-21 09:06:51 | Level: medium indicator (0 comments) | Details |
| The BEANS module will display a list of your holdings and associated statistics. It uses string manipulations and gfx formulas to display the data in a graphics title statement. Total value of the holdings may be plotted.... |
| Better Bollinger Bands | Tomasz Janeczko | 2009-02-15 04:01:11 | Level: basic indicator (0 comments) | Details |
| In the Futures Magazine, October 1998, Dennis McNicholl describesthe use of Bollinger Bands and provides a means of making them tighter whenmarkets are trending. He calls them Better Bollinger Bands.... |
| Binary to Decimal Converter | Michael.S.G | 2007-03-10 03:43:04 | Level: basic showemail,function (0 comments) | Details |
| Binary to Decimal Converter
Can take any length Binary in string format and convert to decimal.... |
| Black Scholes Option Pricing | Anthony Faragasso | 2005-03-20 13:19:39 | Level: advanced exploration (1 comments) | Details |
| Black Scholes Option Pricing returns the Fair Value of call and put options.... |
| Bman's HaDiffCO | Bman | 2007-03-28 17:59:00 | Level: medium system,indicator (3 comments) | Details |
| This is a modified version of the Heikin-Ashi HaDiffCO indicator. This modification gives interesting results which are still being examined. The best signals seem to come from weekly stock charts. Other investment products have not yet been thoroughly tested.
Please post any improvements to this... |
| BMTRIX Intermediate Term Market Trend Indicator | Brian Mitchell | 2003-09-24 08:48:40 | Level: basic indicator,commentary (1 comments) | Details |
| This is a variation of the trix. I'm using a TEMA instead of an EMA like in the original formula. I use a 45 day version, as it tends to call the intermediate term trends fairly well. Above 0 is a bull trend, below 0 is a bear trend.... |
| bolingerbands | babaloo | 2009-08-17 10:02:38 | Level: advanced indicator (0 comments) | Details |
| to add formula to display \' buy and sell signals... |
| Bollinger - Keltner Bands | Prakash Shenoi | 2006-08-13 09:40:02 | Level: basic indicator (1 comments) | Details |
| Although Volatility-based Bollinger Bands and Keltner Bands share many similarities, they differ in their construction. While Bollinger Bands rely on Std Deviation calculations, Keltner Band uses Average True Range, in representing volatility. Like Bollinger bands, Keltner Band signals are produced... |
| Bollinger Band Gap | klaushengher | 2003-06-15 12:43:31 | Level: advanced exploration (8 comments) | Details |
| BbandGap - How to Make Money Shorting Stocks in Up and Down Markets
... |
| Bollinger band normalization | Vic Huebner | 2002-06-03 14:44:50 | Level: medium indicator (8 comments) | Details |
| The position of various indicators within Bollinger bands are used as the start of a trading system. Trends and oscillations can be easily seen. Most of the usual indicators can be back-tested for profitability.... |
| Bollinger Band Width | R.V.Koushik | 2007-01-09 11:18:23 | Level: basic indicator (6 comments) | Details |
| Refer to Bollinger of Bolliner bands... |
| Bollinger Fibonacci Bands | Beachie41 | 2004-11-28 12:34:20 | Level: basic indicator (1 comments) | Details |
| Boll-Fib bands as used on the VT Forex trading platform... |
| Bollinger oscillator | Tomasz Janeczko | 2001-06-16 08:01:18 | Level: basic indicator (2 comments) | Details |
| A simple example of using StDev function... |
| bonlinger bands | babaloo | 2009-08-17 10:04:54 | Level: basic system (0 comments) | Details |
| bolinger band toshow \' buy and sell\' signals... |
| Bottom Fisher Exploration | Aviator33 | 2008-02-07 04:31:58 | Level: basic exploration (7 comments) | Details |
| The Bottom Fisher Scan filters the entire market searching for stocks that have
traded down for at least three consecutive trading sessions and are currently trading higher
and signaling that a potential short-term bottom might have been formed. Based on swing trading
methodology.
It can be... |
| Bottom Trader | Mubashar Virk | 2006-10-01 06:48:29 | Level: basic exploration (4 comments) | Details |
| If a trend is your friend, then you are thrice as lucky to have three buddies in Bollinger Bands. The bands and their MA are not only great trading tools, but superb trend indicators as well. Here, I have for you a Bollinger Bottom Band Exploration (needless to say you can customize it for O, H, L o... |
| Bow tie | dtholz | 2002-02-28 00:06:30 | Level: basic exploration (1 comments) | Details |
| /* Boe Tie - AFL Implementation by Geoff Mulhall 12-5-2001 ... |
| Breadth Thrust | Tomasz Janeczko | 2001-06-16 08:04:41 | Level: basic indicator (0 comments) | Details |
| The Breadth Thrust indicator is a market momentum indicator developed by Dr. Martin Zweig. The Breadth Thrust is calculated by taking a 10-day exponential moving average of the advancing issues divided by the advancing plus declining issues. According to Dr. Zweig a Breadth Thrust occurs when, durin... |
| Brian Wild | Brian Wild | 2008-06-24 01:33:25 | Level: medium indicator (0 comments) | Details |
| An Ichimoku chart showing all component plot plus strong, medium and weak buy and sell signals.... |
| Buff Volume Weighted Moving Averages | Prakash Shenoi | 2006-08-19 12:36:37 | Level: basic indicator (1 comments) | Details |
| Buff's volume-weighted average function has three inputs, price, vol and length. The Fast and slow period inputs represents the number of bars to use in the volume-weighted average calculation. Trader use a combination of 5 and 20 representing Fast and Slow periods respectively.... |
| Bull Fear / Bear Fear | Marek Chlopek | 2002-01-24 09:58:19 | Level: basic system (1 comments) | Details |
| Simple Trading System
http://www.eis.pl/kr/AFM/e-st-Bull_Fear-Bear_Fear_with_DX.html
... |
| Bull/Bear Volume | Nick Molchanoff | 2004-09-29 22:12:49 | Level: basic indicator (5 comments) | Details |
| An approximation of the average Bull Volume component versus the average Bear Volume component of total Volume. Displays an interesting and helpful view of the ebb and flow of Bull and Bear Volume pressure in the market. Shows what the bears are up to while the bulls are in control and vice versa.... |
| Bullish Percent Index | Graham Kavanagh | 2003-01-05 06:18:41 | Level: semi-advanced indicator (1 comments) | Details |
| Produce composite of the group of stocks you want with scan file, then use the P&F indicator to view the result. The files are attached. So set the AA filter to the group of stocks and set last quotations n=1. Run Scan and the composite will have ticker "~BPI" in market253
Put the PFchart in the i... |
| Bullish Percent Index 2 files combined | Graham Kavanagh | 2003-01-05 16:53:46 | Level: semi-advanced indicator (0 comments) | Details |
| The first loaded file was in zipped format to combine 2 formula. I have put both into a single file and they will need to be split back into 2 files. see the first upload for instruction on use... |
| Bullish Percent Index 2004 | Graham Kavanagh | 2004-07-20 19:53:56 | Level: semi-advanced indicator (2 comments) | Details |
| Replaces the previous BPI I placed here
Creates a composite of the Bullish signals for a group of stocks. The file here is 3 parts combined - Create composite - Plot line chart - Plot P&F of BPI
Change the Box sizings to suit your market stocks.
... |
| Button trading using AB auto trading interface | Barry Scarborough | 2008-07-21 22:50:09 | Level: semi-advanced system (3 comments) | Details |
| An indicator that allows buying and selling stocks or futures contracts via ABs auto trading interface. It is not automatic but allows the user to enter their formula and press a button when the buy or sell signal appears. ... |
| Buyer Seller Force | Michael Jordan | 2009-06-20 18:14:05 | Level: basic indicator (0 comments) | Details |
| This indicator is designed to show the force on the equity of buyers/sellers... |
| Calculate composites for tickers in list files | Mark H. | 2006-09-15 23:46:12 | Level: semi-advanced exploration,function (1 comments) | Details |
| Notes:
1. All list files are in folder C:\Program Files\AmiBroker\MyLists and have file name as ListName.tls.
2. The composite results use ticker ~Comp~ListName.
3. The AFL formula is C:\Program Files\AmiBroker\Formulas\Custom\ListComp.afl
4. Save the following text in a JScript file named Lists... |
| CAMSLIM Cup and Handle Pattern AFL | Jerry Tyliczka | 2003-11-15 14:57:03 | Level: medium exploration (4 comments) | Details |
| CAMSLIM cup and handle pattern emploration. Code is based on the following article: http://www.haikulabs.com/mh.htm... |
| Candle Identification | Herman van den Bergen | 2005-01-28 16:37:15 | Level: medium indicator (13 comments) | Details |
| Click on any Candle in the price chart and the Title will identify the selected Candle pattern(s). The Candle definitions were gathered from various sources and accuracy is not garanteed. Add your own patterns to the CandlePattern function.... |
| Candle Pattern Function | Herman van den Bergen | 2005-01-28 17:30:27 | Level: medium showemail,function (5 comments) | Details |
| This function allows you to scan for about 40 popular Candle patterns. Add your custom Candle Pattern to the function.... |
| Candle Stick Analysis | Herman van den Bergen | 2005-01-28 17:04:11 | Level: medium indicator (0 comments) | Details |
| This indicator allows you to select Candlestick patterns, mark their occurrence on the chart, and display their frequency and profit-prediction value. Use param() to select the Candle pattern. Click on the candle following the pattern to see next-bar profits. Add your own metrics.... |
| Candle Stick Demo | Herman van den Bergen | 2005-01-28 16:27:56 | Level: medium indicator (0 comments) | Details |
| This program takes a segment from your price chart and substitutes the last bar visible with a representative Candle stick for the period selected. It allows you to observe how candles are formed and how loss of synchronization of the Candle period, or using different time frames, can result in tota... |
| CandleStick Comentary--Help needed | indecent | 2006-11-30 12:51:24 | Level: medium commentary (0 comments) | Details |
| Can anyone transfer to afl language???
---------
Review of ()
as of
{To use the expert, see the instructions on the Name page.}\
WriteIf(Open,{We have non-zero open, check for close-only data} "WriteIf((High=Close and Low=Close) and
(Ref(High,-1)=Ref(Close,-... |
| Candlestick Commentary | Dale Butkowski | 2002-01-12 09:46:54 | Level: basic commentary (3 comments) | Details |
| Strickly a commentary file I developed to help me locate candlestick patterns. Load file into the Commentary window. Red arrows indicate bearish candles, green arrows indicate bullish candles. Scroll down commentary to find comments.... |
| Candlestick Commentary Modified | AbdulKareem | 2006-11-15 09:45:56 | Level: basic commentary (0 comments) | Details |
| A small changes to the formula to clarify the result displayed.... |
| Candlestick Commentary-modified | Rob Stewart | 2002-10-22 19:55:09 | Level: semi-advanced commentary (15 comments) | Details |
| I modified the previous Candlestick Commentary.
Adding heading and formatting to the output.
Now the output window can be shrunk down to minimum
size and you can still see all the comments.... |
| Candlestick Volume Bars with Moving Average | Mr. Valley | 2001-10-27 22:29:03 | Level: basic indicator (0 comments) | Details |
| Candlestick Volume Bars with a 16 period moving average of volume... |
| CandleStochastics | Jim Varney | 2001-06-19 01:31:57 | Level: medium exploration (3 comments) | Details |
| "CandleStochastics" is an Exploration that combines Stochastics with a scan for 7 different candlestick patterns (Dark Cloud Cover, Piercing Line, Morning and Evening Doji Stars, Hammer, and Engulfing). A Buy signal occurs when the 14-4 Stochastic is at or below 20 and at least one bullish candle pa... |
| CCI 14 DrBobStyle | Dennis Skoblar | 2007-12-05 22:03:37 | Level: basic system,indicator (0 comments) | Details |
| This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this system using Amibroker. Consequently, I do this only so ot... |
| CCI 50 DrBob Style | Dennis Skoblar | 2007-11-29 21:42:15 | Level: basic system,indicator (3 comments) | Details |
|
This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this system using Amibroker. Consequently, I do this only so ... |
| CCI Woodies Style | Larry Jameson | 2004-11-16 18:13:49 | Level: semi-advanced indicator (7 comments) | Details |
| This CCI chart incorporates some of the features seen on a Woodies CCI Chart.... |
| CCI(20) Divergence Indicator | Dennis Skoblar | 2006-02-12 09:28:43 | Level: semi-advanced indicator (4 comments) | Details |
| This is a diveregence indeicator for the CCI(20)...I did not write this excellent program and take no credit for it. I just modified the params a bit to work with the cci. Thank you to the author for the excellent work!... |
| CCI/DI+- COMBO indicator | Mark Richter | 2002-08-19 03:52:05 | Level: basic indicator (0 comments) | Details |
| This is a long term Buy/Sell indicator. Based on a MA of the CCI indicator and the DI+ and DI- indicators. ... |
| CCT Bollinger Band Oscillator | Tomasz Janeczko | 2001-07-20 09:44:39 | Level: medium indicator (1 comments) | Details |
| Steve Karnish wrote:
"Bollinger Bands were developed by John Bollinger and are envelopes that are plotted at two (2) standard deviation levels above and below a moving average. The CCT Bollinger Band Oscillator reconfigures the classic bands. The new indicator constructs two (2) parallel lines in... |
| CCT Coppock Curve | Peter Gialames | 2001-07-20 12:09:23 | Level: basic indicator (1 comments) | Details |
| The CCT Coppock Curve is a formula that was introduced in Barron’s in 1962. It was devised by a San Antonio, TX –based technician named Edwin Sedgwick Coppock. Since then, the Coppock momentum oscillator has been adopted and adapted by technicians around the world.
... |
| CCT FibAccordion | Tomasz Janeczko | 2001-07-20 09:49:12 | Level: basic indicator (2 comments) | Details |
| Steve Karnish wrote:
"The FibAccordion is the difference between two moving averages that are assigned fibonacci numbers. Try building your own by taking any two moving averages with different fibonacci numbers and subtracting one from another and plotting the results. Use either a simple or expo... |
| CCT Kaleidoscope | Tomasz Janeczko | 2001-07-20 09:57:34 | Level: medium indicator (2 comments) | Details |
| Steve Karnish wrote:
"The CCT Kaleidoscope is an interesting combination of three separate momentum oscillators. I’ve combined the MetaStock LinRegSlope indicator with the Stochastic Momentum Indicator and added the True Strength Index. As always, I have "tweaked" the formula numbers to va... |
| CCT StochasticRSI | Tomasz Janeczko | 2001-07-20 10:03:37 | Level: basic indicator (6 comments) | Details |
| Steve Karnish wrote:
"Roger Altman, William Blau, Stanley Kroll, and Tushar Chande have all improved on J. Welles Wilder’s Relative Strength Index. I believe the best of these derivative indicators is the Stochastic RSI. [...] This version is just one of many I use. I like substituting the... |
| Chaikin Money Flow | Tomasz Janeczko | 2001-06-16 08:07:10 | Level: basic indicator (6 comments) | Details |
| Chaikin Money Flow Indicator Appeared in the January 94 issue of Stocks & Commodities magazine Like the popular Chaikin A/D Oscillator developed by Marc Chaikin, the Chaikin Money Flow indicator is based on the Accumulation/Distribution line. It is created by summing the values of the Accumulation/D... |
| Chaikin Volume Accumulation | Tomasz Janeczko | 2001-06-16 08:15:07 | Level: basic indicator (0 comments) | Details |
| A simple example of using HHV, LLV functions... |
| Chaikin's Volatility | Tomasz Janeczko | 2001-06-16 08:09:22 | Level: basic indicator (1 comments) | Details |
| Chaikin's Volatility indicator compares the spread between a security's high and low prices. This is done by first calculating a moving average of the difference between the daily high and low prices and then calculating the rate of change of that moving average. For more information please check Am... |
| Chande Momentum Oscillator | Jayson Casavant | 2002-12-09 01:34:00 | Level: basic indicator (8 comments) | Details |
| The CMO is closely related to, yet unique from, other momentum oriented indicators such as Relative Strength Index, Stochastic, Rate-of-Change, etc. It is most closely related to Welles Wilder’s RSI, yet it differs in several ways. For a nice description of the indicator and interpretation vis... |
| Chande's Trend Score | Ben Letto | 2005-03-04 13:42:00 | Level: medium indicator (0 comments) | Details |
| I just found this code in a Visual Trader site and transfered it into AFL.... |
| Chandelier Exit | Geoff Mulhall | 2006-11-11 18:19:29 | Level: advanced indicator,function (1 comments) | Details |
| This is the afl code behind the Chandelier plugin which I originally wrote in C using the Amibroker Developers Kit.
This code needs to be stored in a say "C:\Program Files\Amibroker\AFL\Include" and referenced in your formula via an include statement
#include "c:\Program Files\Amibroker\AFL\Includ... |
| Chandelier Exit | Jarod Marshall | 2006-02-02 07:43:01 | Level: semi-advanced system,indicator (2 comments) | Details |
| These two forms of the same indicator are designed to act as the Chandelier Exit stop loss as described by Barbara Rockefeller in "Technical Analysis for Dummies", and is written especially for use with AmiBroker. She describes the Chandelier exit as a dataset of "the highest high or the highest clo... |
| Chandelier Exit | RAC | 2008-12-13 18:31:07 | Level: basic indicator (1 comments) | Details |
| An improved and easier to understand version of Chuck Lebeau\'s chandelier exit.
... |
| Chandelier Exit or Advanced Trailing Stop | Rob Duff | 2006-09-27 19:33:33 | Level: medium indicator (1 comments) | Details |
| Chandelier Exit v2 by Geoff Mulhall
Modified 1-Feb-2003 to take advantage of Ami 2.5 Param Functionality and to allow for Short Trades as well as Long Trades. The Chandelier Exit is a Volatility based exit. Refer to http://www.traderclub.com/discus/board.html Bulletin 35 Trailing Stops - The Chande... |
| Chandelier Plugin | Geoff Mulhall | 2004-11-01 18:04:31 | Level: semi-advanced system,exploration,indicator (2 comments) | Details |
| CHANDELIER EXIT Geoff Mulhall 24 Oct 2004
-----------------------------------------
The plugin is downloadable from
http://finance.groups.yahoo.com/group/amibroker/files/
OR
http://www.amibroker.org/3rdparty/
Look for chandelier.zip
Vers 1.02 - Improvements to problem data handling. Thks... |
| Chart Zoom | Jorgen Wallgren | 2009-03-07 06:29:43 | Level: basic showemail,function (0 comments) | Details |
| A software zoom which will zoom from the current/last time/date and as many days back as specified. The zoom is independent of your period setting- e.g. 1 day zoom with 5 min periods will show a total of 78 bars, and in 1 Min periods a total of 390 bars. Below you enter the number of Blank Bars you ... |
| CoinToss ver 1 | Nilesh | 2009-01-27 07:26:26 | Level: semi-advanced system (0 comments) | Details |
| Coin Toss model , it has nothing to do with Technical OR Fundamental Analysis
It has nothing to do with entry or exit rules.
Here One books profits and losses at a predefined percent.... |
| Cole | Marek Chlopek | 2001-10-17 02:53:15 | Level: basic system,indicator (0 comments) | Details |
| Cole Trading Method
Rally, Reaction, Inside, Outside and Rally with Volume, Reaction with Volume formulas... |
| Color Coded Short Term Reversal Signals | Larry Lovrencic | 2001-09-26 21:04:08 | Level: basic indicator (2 comments) | Details |
| Find Short Term Reversals - Closing Price, Hook, Island, Key, Open-Close and Pivot Point Reversals highlighted on your bar chart.
The bars of the reversals may be highlighted by any color you wish. Just change the numbers for the colors in the formula.
This has been coded for a white backgroun... |
| Color Display.afl | bill barnard | 2003-12-15 10:56:15 | Level: medium indicator (1 comments) | Details |
| Displays Amibroker color choices when run in IB. All colors are shown in a color bar at the bottom of the plot. a click on one of the colors will produce histogram and line plots and a title line in the selected color. The title gives the full name and the number of the color, to aid in coding. The ... |
| Color MACD Histogram Changes | MTR Investors Group | 2009-06-26 22:18:04 | Level: basic indicator (0 comments) | Details |
| Use on weekly charts to determine Trend Changes. If the Weekly Bars are Green check the daily bars for LONG entries, if the Weekly Bars on Red check the daily for SHORT entires. ... |
| Color Price Bar - Impulse System | MTR Investors Group | 2009-06-27 11:39:20 | Level: basic system (2 comments) | Details |
| When the MACD Histogram is up and EMA(21) is up Price bars are green. When MACD Histogram is down and EMA(21) is down price bars are red. If the MACD Histogram and EMA(21) are moving in two different directions the price bars are blue.
\"When the impulse system is Green you may go long or stand a... |
| Color Price Bars with MACD Histogram Changes | MTR Investors Group | 2009-06-26 22:17:20 | Level: basic indicator (0 comments) | Details |
| Use on weekly charts to determine Trend Changes. If the Weekly Bars are Green check the daily bars for LONG entries, if the Weekly Bars on Red check the daily for SHORT entires. ... |
| colored CCI | Tom Supera | 2001-07-20 15:46:27 | Level: basic indicator (2 comments) | Details |
| CCI is a trend-indicator.
In my formula i use the original, but with colored bars.
So you can faster see, if there's a uptrend, downtrend, or trading-range.
red bars : downtrend
green bars: uptrend
blue bars : trading-range... |
| Colorfull Price | bestbusinessbooks | 2008-09-07 07:50:27 | Level: basic indicator (0 comments) | Details |
| Colorfull Price of Bars... |
| com-out | A7MAD AL_HARPI | 2007-05-29 20:55:40 | Level: basic system (0 comments) | Details |
| _SECTION_BEGIN("ABU 3TTA ((com-out))");
//------------------------------------------------------------------------------
//
// Formula Name: Application of Ehler filter
// Author/Uploader: goldfreaz
// E-mail: ahmad_h1402@hotmail.com
// Date/Time Added: 2004-01-05 12:58:20
//... |
| COMBO | Sceptic or optimist? | 2002-07-14 20:00:54 | Level: semi-advanced exploration,indicator (1 comments) | Details |
| Excuse my English. Text is write for programme PC TRANSLATOR.This indicator not given clear purchase and selling signals. Signals is necessary take only like possible turning point. Already long time investigation different indicator and get I am to findings, that movement stock isn't forward poss... |
| Commodity Channel Index | Tomasz Janeczko | 2001-06-16 08:55:42 | Level: medium system,commentary (0 comments) | Details |
| CCI measures price excursions from the mean price as a statistical variation. The indicator works quite well with commodities, stocks and mutual funds. It keeps trades neutral in a sideways moving market, and helps get in the market when a breakout occurs.
This sample commentary shows how to use... |
| Commodity Selection Index (CSI) | mike_05 | 2009-11-13 11:57:20 | Level: medium indicator (3 comments) | Details |
| Commodity Selection Index (CSI) is developed by Wilder.
This indicator is an extension of DMI. This indicator can help traders to properly select instruments for investment.
The selection is based on DMI indicator with considering of capital, leverage, and comission fee.... |
| Compare Sectors against Tickers | goldfreaz | 2002-05-09 13:44:50 | Level: advanced exploration (4 comments) | Details |
| Compares relative strength, StochRSI, relative volume, and RSI. Good stocks must be assigned to the right sectors...garbage in / garbage out. Scan the enclosed AFL then set up the indicators that follow. ... |
| Constant Trendline Plot | Rob Holloway | 2005-02-07 17:12:00 | Level: basic indicator (1 comments) | Details |
| THIS IS A TECHNIQUE FOR DRAWING TRENDLINES EVERYWHERE ON A CHART WITHOUT A LOOPING FORMULA. I developed this technique because, as far as I could tell, the trendline methods made readily available in Amibroker (e.g. the example in the LinReg formula in AFL reference section of help), are limited in... |
| Continuous Contract Rollover | Dennis Brown | 2008-07-02 16:45:21 | Level: semi-advanced indicator (1 comments) | Details |
| This chart is used to generate a Continious Contract Rollover ticker
It merges actual contract prices of two tickers
The rollover date is selected via paramater
Volumes of both tickers are shown to verify the rollover time
Older contract prices are adjusted down by the premium and appended to ... |
| Controlling Height of Volume Bars | LaNard | 2008-11-28 17:37:42 | Level: basic indicator (0 comments) | Details |
| I can not take the credit for this very useful indicator, Mr. Ara Kaloustian deserves the recognition. It allows a user defined volume histogram overlay in your price pane. Many traders may find it useful by conserving real estate on the chart windows. Also, can some of our fine amibroker\'s code w... |
| Coppock Curve | Tomasz Janeczko | 2001-06-16 08:17:23 | Level: basic indicator (0 comments) | Details |
| The Coppock Curve was developed by Edwin Sedgwick Coppock in 1962.
It was featured in the November 94 issue of Technical Analysis of Stocks & Commodities, in the article "The Coppock Curve", written by Elliot Middleton.:
Taken from Stocks & Commodities, V. 12:11 (459-462): The Coppock Curve by... |
| Coppock Histogram | Bill Dodd | 2007-12-19 21:16:23 | Level: medium indicator (1 comments) | Details |
| The Coppock indicator was designed to indicate the and of the bear market and identify an early entry to the new bull market. Coppock designed it to be used only on the monthly index charts but it is an excellent contrarian indicator and can be used on charts of very liquid stocks.
The present i... |
| Coppock Trade Signal on Price Chart | rcef88 | 2009-01-27 13:12:18 | Level: medium indicator (0 comments) | Details |
| Based on Edwin Sedgwick Coppock\'s original work to generate Buy and Sell signals on price chart. All the parameters are, however, adjustable including the Coppock Filter to filter out the market noise.... |
| Coppock Trade Signal v1.1 | rcef88 | 2009-01-27 13:07:31 | Level: medium indicator (0 comments) | Details |
| Based on Edwin Sedgwick Coppock\'s original work to generate Buy and Sell signals. All the parameters are, however, adjustable including the Coppock Filter to filter out the market noise.... |
| COT REPORT | John Sphinx | 2009-10-25 03:08:47 | Level: basic indicator,function (0 comments) | Details |
| COT Report/Commitment of Traders for Amibroker. If you have a different EOD provider then You will need to go into the include folder, cot symbol and change the symbol according to what the market is. You can download the data every week at http://exhd.com/cot/cot-data and also download the amibroke... |
| Count Tickers in Watchlist | Anthony Faragasso | 2003-07-05 09:27:55 | Level: medium showemail,function (1 comments) | Details |
| This function will output the number of tickers in a selected watchlist... |
| crBeta | Chuck Rademacher | 2003-05-21 05:14:07 | Level: semi-advanced system,exploration,indicator,function (0 comments) | Details |
| This function calculates beta for any stock against an index or another stock. Caution... beta calculations typically have long lookback periods. This could eat a lot of your data prior to generating any values. Most data providers use a five year lookback (1225 days). I think you can have meani... |
| crMathLib | Chuck Rademacher | 2003-05-06 15:46:11 | Level: medium system,exploration,indicator,function (0 comments) | Details |
| A "work in progress" library of mathematical functions. This first posting is purely to get things going. More functions will be added regularly. Users may cut and paste functions into their own code. This version includes:
crLinearCorrelation (bars)
crRSquare (bars)... |
| Customised Avg. Profit %, Avg. Loss % etc | Paul Ho | 2006-09-28 08:54:39 | Level: medium system (0 comments) | Details |
| With the current definition of Avg. Profit %, Avg. Loss % and Avg. Profit/Loss %, it is possible to have a negative Avg. profit/loss % even though the Avg. profit/loss is positive.
An alternative defintion is being implemented through the custom backtest procedure. Avg. Profit/loss %is to be equal ... |
| Cycle Highlighter | Andy Davidson | 2006-10-11 04:09:26 | Level: medium indicator (0 comments) | Details |
| Derived from Millard's "Tribute to J M Hurst" book, using centred MAs to visualise the cyclic components and a 'best fit' sine wave (red) to extrapolate to the right-hand edge.
The sine wave is anchored at the most recent trough or peak in the cycle highlighter line. The red and blue spikes show ... |
| Cycle Highlighter (auto best-fit) | Andy Davidson | 2006-10-23 05:28:49 | Level: medium indicator (6 comments) | Details |
| As per the cycle highlighter but uses a loop function (which makes it quite slow) to automatically find one possible cycle period 'solution'. A best-fit between the sine wave and the cycle highlighter (or price if option chosen) is found by determining the highest positive correlation coefficients w... |
| Dahl Oscillator modified | Hans | 2004-09-18 03:24:24 | Level: basic system,indicator (7 comments) | Details |
| Modified formula from original DAHL(55) with 14 simple average. Used TEMA instead of simple MA, added parameters and optimization. Good also for trading system (as indicator to be used with 10 and 90 levels also)..... |
| danningham penetration | N. Sagi | 2004-03-17 13:48:49 | Level: semi-advanced system (0 comments) | Details |
| this furmula try to simulate the
danningham penetration method, using
vbscript inside it.
if you find a way to improve it,
you can send the improvment back to me :)
... |
| Darvas Box | Stephane | 2004-12-06 14:06:18 | Level: basic indicator (6 comments) | Details |
| An explanation of the construction of the Darvas Box is available at:
1)
2) ... |
| Darvas box | Paul Moore | 2008-06-02 17:03:07 | Level: medium indicator (4 comments) | Details |
| The original Darvas box indicator was submitted by Stepane. Here is the link:
http://www.amibroker.com/library/detail.php?id=414
I've taken his original AFL and modified it to only display show the box when it is active.
The Darvas box itself is shown in white, so you should use a dark backgr... |
| DateNum_DateStr | Stephane Carrasset | 2004-12-18 12:21:49 | Level: basic commentary,function (4 comments) | Details |
| Function changes DateNum ex:1040928 en String ddmmyyyy ex:28/09/2004 ( only > 2000 year )
Returns in Interpretation every date when occurs an Events.
Example of StrFormat; StrToNum; NumToStr; printf;
StaticVarSetText;
... |
| Date_To_Num(), Time_To_Num() | Antonio Marra | 2004-07-20 06:36:17 | Level: basic showemail,function (0 comments) | Details |
| These functions will convert a quotation date or a quotation time in correct DateNum() and TimeNum() format.... |
| Dave Landry PullBack Scan | Dennis Skoblar | 2005-07-27 05:30:05 | Level: medium system,exploration (2 comments) | Details |
| This is the Dave Landry PullBack Scan as developed by him and taken from his two books, "Dave Landry On Swing Trading" and "Dave Landry's 10 Best Swing Trading Patterns And Strategies". The scan searches for stocks making a pullback from their most recent 20 day highs or 20 day lows. This is best us... |
| Dave Landry Pullbacks | Daniel Ervi | 2001-11-06 22:05:47 | Level: medium exploration (3 comments) | Details |
| A rough implementation of the setup criteria that Dave Landry uses to trades pullbacks in an established trend. A buy (sell) stop is placed above (below) todays high (low) to enter the position. A trailing stop is then used to capture any gains. He recommends placing your stop loss below the near... |
| Days to Third Friday | Ed Cottrell | 2006-03-17 14:10:39 | Level: medium showemail,function (1 comments) | Details |
| A function to determine the number of days left until the third Friday of the month, when U.S. options expire. By default, the function counts down to zero (on the third Friday), then starts counting down to the third Friday of the next month. Instructions on how to change this behavior (e.g., to ma... |
| De Mark's Range Projection | Prakash Shenoi | 2006-08-09 06:59:19 | Level: basic indicator,commentary (0 comments) | Details |
| De Mark's Range Projection based on market structure High, Low and close, takes into calculation the position of close in relation to Open and projects likely range of the High and Low for the next session. ... |
| DEBAJ | Debaj | 2007-09-27 19:11:16 | Level: medium indicator (2 comments) | Details |
| I MIXED BETWEEN TOW INDECATORS..ONE OF THEM IS AVERGE CROSS OVER Modified by Bobby Kular..AND I ADD WTITH THIS INDECATOR TIME SERIES FORCAST MA WITH 2 DAYS PERIOD.
I GET A VERY GOOD SIGNALS..
BUY WHEN TSF CROSS UP ACO AND SELL WHEN TSF CROSS DOWN ACO.
I TEST THIS MIXED FORMULA MANY TIMES IN INT... |
| Demand Index | Steve Wiser | 2001-07-05 19:12:36 | Level: medium system,exploration,indicator (2 comments) | Details |
| Uses the demand index for a system test.... |
| Demand Index | Paul Ho | 2007-03-18 03:51:24 | Level: basic indicator (4 comments) | Details |
| Converted it from tradstation,
It is quite close to the formula that was posted by Stev wiser.
A number of parameters setting was available
this is also discussed in some details in
http://forum.equis.com/forums/thread/21109.aspx... |
| DeMarker | Tomasz Janeczko | 2001-06-16 08:19:53 | Level: basic indicator (0 comments) | Details |
| The DeMarker indicator is an attempt to overcome the shortcomings of classical overbought / oversold indicators. The DeMarker Indicator identifies potential price bottoms and tops. It accomplishes this by making price comparisons from one bar to the next and measuring the level of price demand. For ... |
| Derivative Oscillator | Dan | 2003-03-15 12:22:53 | Level: basic indicator (2 comments) | Details |
| Derivative Oscillator as mentioned in Constance Brown's book Technical Analysys for Trading Professional.
... |
| DiNapoli Detrended Oscillator | TohMz | 2008-06-02 11:45:38 | Level: medium indicator (0 comments) | Details |
| Based on "Joe DiNapoli - The Practical Application of Fibonacci Analysis to Investment Markets" - Chapter 7... |
| Dinapoli Guru Commentary | Grayesso | 2003-12-10 14:06:39 | Level: basic commentary (1 comments) | Details |
| Dinapoli Guru Commentari + MACD optimise + Stochastic optimise = Trade system... |
| Dinapoli MACD (DEMA) | TohMz | 2008-10-30 10:49:19 | Level: semi-advanced indicator (0 comments) | Details |
| The purpose is to accurately create the indicator.
Althrough the indicator can use MACD(8,17) & Signal(8,17,9)to represent it.... |
| Dinapoli Perferred Stochastic | TohMz | 2008-06-02 11:25:15 | Level: basic indicator (4 comments) | Details |
| Based on "Joe DiNapoli - The Practical Application of Fibonacci Analysis to Investment Markets" - APPENDIX E
Formula description AND
Derived from given eSignal formula suggested by LaNard
... |
| DiNapolis 3x Displaced Moving Averages | TohMz | 2008-05-27 01:20:41 | Level: medium indicator (1 comments) | Details |
| The DiNapoli 3 x Displaced Moving Averages
Based on "Joe DiNapoli - The Practical Application of Fibonacci Analysis to Investment Markets"
... |
| Distance Coefficient Ehlers Filter | Chris Yeoh | 2004-11-14 23:50:02 | Level: medium indicator (1 comments) | Details |
| Taken from the article in TASC's April 2001 Issue.... |
| Divergence indicator | M.Lauronen | 2004-07-30 11:50:32 | Level: medium indicator (10 comments) | Details |
| Here is an indicator which calculates divergencies between the price and RSI.
You can use another strenght/momentum indicator simple by changing one line of code.
Remember to tune the 'period' and 'numChg'
Indicator gives you the buy/sell signal when you see green/red vertical line on the p... |
| Divergences | Dimitris Tsokakis | 2001-09-08 06:45:46 | Level: semi-advanced exploration (0 comments) | Details |
| Exploration for Relative Slope or Stochastic Divergence,
bullish or bearish. For Indicator Builder Use you may see
RELATIVE SLOPE BULLISH DIV, yellow spike
STOCHASTIC BULLISH DIV, red spike
RELATIVE SLOPE BEARISH DIV, yellow bar
STOCHASTIC BEARISH DIV, red bar
The only purpose of BUY, SELL, SH... |
| DMI Spread Index | Steve Wiser | 2001-07-05 19:13:58 | Level: basic system,exploration,indicator (4 comments) | Details |
| Uses DMI Spread Index as a system, indicator and exploration... |
| Donchian Channel | R. Bertematto | 2003-06-09 22:58:40 | Level: basic indicator (3 comments) | Details |
| This plots a Donchian Channel, similar to a Bollinger Band but based on highs and lows. Good for support/resistance.... |
| Double Smoothed Stochastic from W.Bressert | Tom Supera | 2001-07-20 15:39:11 | Level: basic indicator (0 comments) | Details |
| This is an Overbought/Oversold Indicator.
It works very well, but never use this indicator alone.
you always need a trend indicator.
Values about 80 shows overbought, under 20 shows oversold.
Formula:
title = "127-3 DSS" + " " + fullname() + " " + Date( ) ;
Slw = 4; Pds = 4;... |
| Double top detection | Tomasz Janeczko | 2001-06-16 08:45:38 | Level: semi-advanced commentary (3 comments) | Details |
| Detecting patterns is somewhat tricky thing mainly because you can be sure about that only if the pattern is complete. This implies delay in detecting patterns and/or formations and limits usefulness of automatic detection formulas. Anyway I will try to show you how to write pattern recognition form... |
| DPO with shading | Bill Halliday | 2006-12-07 11:18:03 | Level: basic indicator (1 comments) | Details |
| A customized version of the 'DPO - Detrended Price Oscillator' Indicator that displays a shaded plot
using styleCloud
... |
| DT Oscillator | X-Trader | 2005-06-04 13:35:04 | Level: basic indicator (0 comments) | Details |
| The very known indicator created by Robert Miner based on StochRSI. Use it as a Stochastic or to help you counting waves. Set MAType=1 if you want the simple version, or MAType=2 for exponential.... |
| Dynamic Momentum Index | jayson casavant | 2003-08-07 17:26:56 | Level: medium indicator (2 comments) | Details |
| Description
The Dynamic Momentum Index (DMI) was developed by Tushar Chande and Stanley Kroll. The indicator is covered in detail in their book The New Technical Trader.
The DMI is identical to Welles Wilder’s Relative Strength Index except the number of periods is variable rather than ... |
| Dynamic Momentum Index | jayson casavant | 2003-08-07 17:28:26 | Level: medium indicator (0 comments) | Details |
| Description
The Dynamic Momentum Index (DMI) was developed by Tushar Chande and Stanley Kroll. The indicator is covered in detail in their book The New Technical Trader.
The DMI is identical to Welles Wilder’s Relative Strength Index except the number of periods is variable rather than ... |
| Dynamtic Momentum Index | Wesley Bush | 2007-10-16 17:31:10 | Level: basic indicator (1 comments) | Details |
| Dynamtic Momentum Index based on the RSI formula with a variable length.... |
| Ed Seykota's TSP: EMA Crossover System | Mark H. | 2006-09-15 11:12:58 | Level: basic system (6 comments) | Details |
| This is the code for the EMA Crossover System of Ed Seykota's Trading System Project at
http://www.seykota.com/tribe/TSP/index.htm.
I have tested it and got identical results to the dime compared to those at Seykota's website. I can't get it identical to cents due to rounding errors.
... |
| Ed Seykota's TSP: Support and Resistance | Mark H. | 2006-10-08 01:48:31 | Level: semi-advanced system,exploration,indicator (18 comments) | Details |
| This is an implementation of Seykota's TSP S-R system.
See http://www.seykota.com/tribe/TSP/SR/index.htm for details.
I have tested it and got identical results (well there is 2-cent difference due to rounding).... |
| Effective Swing Indicator | Brian Oliver | 2009-09-23 23:24:21 | Level: basic system,indicator (1 comments) | Details |
| This indicator is meant to be added below a price chart. It is made to locate BIG turning points. The idea is to allow for entry points (and exits) where there is a definite turn instead of generating signals in regions that are essentially flat without any trend. I also use stops, both in backte... |
| Ehler's filters and indicators | elvf | 2005-08-07 20:35:13 | Level: medium function (1 comments) | Details |
| I put together several functions, implementing Ehler's filters
and indicators into one include file.... |
| Ehlers Center of Gravity Oscillator | Not Too Swift | 2005-06-25 01:14:08 | Level: medium indicator (1 comments) | Details |
| Ehlers Center of Gravity Oscillator is from Cybernetic Analysis for Stocks and Futures. Wiley. 2004.
This indicator represents the center of gravity of prices over the window of observation.... |
| Ehlers CyberCycle | Not Too Swift | 2005-03-19 23:35:31 | Level: medium indicator (4 comments) | Details |
| Ehlers CyberCycle is an indicator listed in "Cybernetic Analysis for Stocks and Futures," by John Ehlers. This is a slightly modified version of the code I found at:
http://www.traders.com/Documentation/FEEDbk_docs/Archive/052004/TradersTips/TradersTips.html#amibroker... |
| Ehlers Dominant Cycle Period | Not Too Swift | 2005-04-23 00:31:49 | Level: semi-advanced indicator (10 comments) | Details |
| This is another calculation from Ehlers's "Cybernetic Analysis for Stocks and Futures." It returns the dominant period length.
This code is not elegant. I would greatly appreciate help in making it more transparent and elegant.... |
| Ehlers Fisher Transform | Not Too Swift | 2005-03-26 23:33:11 | Level: medium indicator (13 comments) | Details |
| The Fisher Transform converts price data to a nearly Gaussian probability density function. The result is an indicator that reverses very sharply when a trend changes.... |
| Ehlers Instantaneous Trend | Not Too Swift | 2005-03-20 00:25:13 | Level: medium indicator (2 comments) | Details |
| This is a zero lag trend indicator with an interesting predictive trigger.... |
| Ehlers Laguerre RSI | Not Too Swift | 2005-03-28 23:00:59 | Level: medium indicator (4 comments) | Details |
| The Laguerre transform provides a time warp such that the low frequency components are delayed much more than the high frequency components. This enables very smooth filters to be built using a short amount of data.
The Laguerre RSI operates on four data points and is smoother than an RSI(4).... |
| ekeko price chart | RAFAEL GOMEZ | 2006-03-17 01:00:42 | Level: semi-advanced system (11 comments) | Details |
| price chart with trade calls for aroon + sar signs... |
| EKEKO SAR-MF | RAFAEL GOMEZ | 2006-07-30 23:49:54 | Level: semi-advanced system (3 comments) | Details |
| SAR EVENTS WITH SPECIAL PARAMETERS FOR MULTI FRAMES 1 MINUTE, 30 MINUTES (MARKET PROFILE), DAILY, WEEKLY, MOUNTHLY
SUCESS GUYS
... |
| Elder Bear Power | Rob Stewart | 2001-08-10 19:00:38 | Level: semi-advanced indicator (0 comments) | Details |
| Elder-ray combine the best features of trend-following indicators and oscilators. It includes an exponential moving average, which is a trend-following indicator. Its Bull Power and Bear Power components are oscillators.
See also Elder-ray.alf and Elder Bull Power.alf
... |
| Elder Bull Power | Rob Stewart | 2001-08-10 18:59:53 | Level: semi-advanced indicator (0 comments) | Details |
| Elder-ray combine the best features of trend-following indicators and oscilators. It includes an exponential moving average, which is a trend-following indicator. Its Bull Power and Bear Power components are oscillators.
See also Elder-ray.alf and Elder Bear Power.alf
... |
| Elder Impulse Indicator | Lal | 2005-10-28 18:01:49 | Level: medium indicator (4 comments) | Details |
| Detects an "impulse" in price and plots up/down arrows accordingly along with Close bars.... |
| Elder Impulse Indicator V2 | Lal | 2006-02-09 17:33:09 | Level: medium exploration,indicator (0 comments) | Details |
| Elder's Impulse Indicator with exploration ... |
| Elder Ray - Bull Bear | Noor_Doodie | 2006-02-23 12:10:44 | Level: basic indicator (1 comments) | Details |
| I have constructed it in color and joined the two lines together instead. Violet = Bull, Orange = Bear.
If im not wrong, Dr. Elder's teaching goes like this:
In uptrends, use Elder Ray-Bull(Violet)
In Downtrends, use Elder Ray-Bear(Orange)
Pls correct me if im wrong.... |
| Elder Ray Oscillator with MA | Pavan | 2009-07-27 08:58:42 | Level: basic indicator (0 comments) | Details |
| Oscillator that combines both bull,bear power and plots it as a moving average.... |
| Elder safe Zone Long + short | Boodha | 2005-10-16 19:35:37 | Level: semi-advanced indicator (6 comments) | Details |
| Trailing stop méthod... |
| Elder Triple Screen Trading System | Dennis Skoblar | 2007-09-30 11:49:08 | Level: basic system,exploration,indicator (4 comments) | Details |
| This scan finds candidates by the Weekly MACD Historgam slope, and the Daily 2 Period Force Index dipping above or below it's Zero Line. Plot a Weekly 26 Period EMA to
help confirm the weekly direction. It should be rising along with an uptick on the Weekly MACD Histogram to go long. However, Elde... |
| Elder's Market Thermometer | Noor_Doodie | 2006-02-23 12:04:31 | Level: medium indicator (2 comments) | Details |
| Juast another ad on to ur evergrowing Elder Library. Hope this works for you guys, tweak it if you need to.... |
| Elder's SafeZone Stop | sloughbridge | 2003-10-16 00:12:05 | Level: medium indicator (4 comments) | Details |
| This indicator sets a Stop beneath the range of expected downside fluctuations during an uptrend.
... |
| Elder-ray | Rob Stewart | 2001-08-10 19:11:45 | Level: semi-advanced commentary (9 comments) | Details |
| Elder-ray combine the best features of trend-following indicators and oscilators. It includes an exponential moving average, which is a trend-following indicator. Its Bull Power and Bear Power components are oscillators.
See also Elder Bear Power.alf and Elder Bull Power.alf
... |
| ElderSafeZoneStopLong | Leon Nedbalek | 2003-12-30 18:30:18 | Level: medium indicator (1 comments) | Details |
| According to my tests this provides the same results as the Excel spreadsheet detailed in the Trading Room book, with one modification. Instead of giving today's stop using the data from the previous day, it provides tomorrow's stop using today's end-of-day data. If you need the stop for today, clic... |
| ElderSafeZoneStopShort | Leon Nedbalek | 2003-12-30 18:39:36 | Level: medium indicator (0 comments) | Details |
| Provides results identical to the Excel spreadsheet discussed in the Trading Room book, except that it gives tomorrow's recommended stop from today's end-of-day data instead of today's stop from yesterday's data. To get today's stop, click on yesterday's date in the chart. For short positions only. ... |
| Elliott Wave Oscillator | kellahd | 2007-02-16 11:01:30 | Level: basic indicator (7 comments) | Details |
| _SECTION_BEGIN("Elliotte Wave");
Plot( (EMA(C,5)-EMA(C,35)), _DEFAULT_NAME(), IIf( C > O, ParamColor("Up Color",
colorRed ), ParamColor("Down Color", colorRed ) ), ParamStyle( "Style",
styleHistogram | styleThick, maskHistogram ) );
_SECTION_END();
... |
| Ema bands | dtholz | 2002-03-11 04:00:54 | Level: basic exploration,indicator (0 comments) | Details |
| ema offset bands easy to change 5 bands and ema period
indicator and AA scan .
this produced excellent results on the ASX ( aussie exchange) ... |
| EMA Crossover | David McMillin | 2004-08-13 10:50:12 | Level: medium system (8 comments) | Details |
| The formula is meant to work with Buystops and Sellstops at the previous days's 7d-ema crossovers. Appears to work well with long trades in about 20% of the SPX. Designed for weekly traders.... |
| EMA Crossover Price | Tommy Beard | 2005-08-12 14:11:35 | Level: basic indicator (5 comments) | Details |
| The Title of this Graph shows the Price needed to generate an EMA Crossover. It is useful in predicting an Entry or Exit Price if you use EMA Crossovers. The default EMAs are 5 and 10 Periods. The layout is simple and can easily be worked into your own favorite graphs. ... |
| End Of Year Trading | cemays | 2006-07-09 13:29:46 | Level: basic system (1 comments) | Details |
| Trade only Dow Industrial Stocks at the end of year and only buy those stocks that have lost the most the previous year. Doing backtest over from Jan 1, 1995 to Dec 31, 2005 shows a 3 stock portfolio would do the be with a 25% annual gain but had a system drawdown of 38%.... |
| Ergodic Oscillator | Prakash Shenoi | 2006-08-10 10:08:00 | Level: basic indicator (0 comments) | Details |
| Ergodic Oscillator uses a double-smoothed ratio of the difference between the Close and Open prices and the difference between High and Low. The default periods of average1 is between 11 and 32 and the default of average2 ranges between 4 and 13, which can be varied by right clicking the Param fun... |
| Evaluating Candle Patterns in a trading system | Herman van den Bergen | 2005-01-28 17:54:38 | Level: medium system (5 comments) | Details |
| A simple example program to show how one can evaluate candle patterns in a simple trading system. Use the AA param() to select Long or Short only mode and to set the profit period after the pattern. Run in Optimize on stock or watchlist.... |
| Expiry Thursday for Indian markets | Ajay Joglekar | 2005-05-14 15:39:52 | Level: semi-advanced indicator (10 comments) | Details |
| This indicator will give a white arrow pointing the last thursday of every month. This is the monthly expiry day in the indian markets.It is useful to note changes in prices of futures and options.... |
| Export All Daily Data to TXT with MS import format | Khalid Mirza | 2008-01-05 06:17:23 | Level: basic showemail,function (4 comments) | Details |
| this formula will export all tickers to a text file formatted with Metastock Import Format, after export you can use hte downloader or any other utility to convert the TEXT file to MS format... |
| Export EOD or Intraday to .csv file | Barry Scarborough | 2008-08-30 16:10:54 | Level: medium indicator (0 comments) | Details |
| An indicator that allows dumping large files to C:\AmiBackup. It can export EOD or intraday data up to 375,000 Excel lines. Large files, over 65500 lines will be broken into multiple files with a suffix of A, B, C or D. Follow the instruction in the header of the indicator file.... |
| Export Intraday Data | Graham Kavanagh | 2004-02-05 05:15:52 | Level: basic showemail,function (27 comments) | Details |
| AFL for AA window, exports to TXT file for each ticker. Set the timeframe in AA settings window... |
| Fast Refreshed KAGI Swing Charts (Price Swing) | A student of the markets | 2007-02-15 18:56:54 | Level: medium indicator (6 comments) | Details |
| I present here a smart solution to overcome the slowness of "FOR cycles" and build high quality and fast-refresh swing charts in Amibroker. (read more about the trick below)
ABOUT PRICE SWING CHARTS
KAGI SWING Charts also knowns as PRICE SWING CHARTS are built in time-independent squared charts,... |
| FastStochK FullStochK-D | AbdulKareem | 2006-11-15 09:51:47 | Level: semi-advanced indicator (0 comments) | Details |
| Just an enhacement to the display and control of colors.... |
| Fib CMO | mleonsprint | 2004-07-20 01:31:01 | Level: basic indicator (0 comments) | Details |
| Here is the "fib CMO" formula which was first shown by Uncle Steve, I cooked it up with all kinds of parameter functions Enjoy =)... |
| Fibonacci Internal and External Retracements | David K | 2008-05-11 22:31:30 | Level: basic indicator (6 comments) | Details |
| AB version 5.08 is used with this formula - please check your version to insure there are no conflicts with new features.
This formula uses Peaks/Troughs to identify pivots for calculations. Pivots may also be identifed by using your mouse to select any point in the chart. Pivots will be located ... |
| Fibonacci Moving averages | Lokanath | 2006-04-08 14:18:42 | Level: basic indicator (0 comments) | Details |
| displays some fibo moving averages... |
| FirstBarIndex(), LastBarIndex() | Antonio Marra | 2004-07-20 06:38:08 | Level: basic showemail,function (0 comments) | Details |
| It retrieve the first or the last BarIndex() Value when a given condition is true.... |
| fishnet | wolfgang mrazek | 2004-03-29 04:23:35 | Level: basic indicator (5 comments) | Details |
| This is a simle fishnet. I'm surprised that no one else has added this but maybe coz it's so simple... This one looks very "sticky" in chart. Maybe you can show a better one?
... |
| Follow the Leader | Kelly Griffiths | 2004-10-06 00:45:08 | Level: basic system (5 comments) | Details |
| This follows institutional investing by using volume as an indicator.... |
| Force index | Thomas Youssef | 2005-02-22 02:07:19 | Level: basic indicator (2 comments) | Details |
| Alexander Elder´s classic force index indicator
I use them on swedish stocks, weekly.
The rules are easy:
If the indicator is below zero AND there is a bullish divergence, then go LONG
If the indicator is above zero AND there is a bearish divergence, then go SHORT
Works well when you ha... |
| Frequency distribution of returns | Jeff | 2008-08-30 03:17:25 | Level: basic indicator (0 comments) | Details |
| Plots the frequency distribution of percent. You can choose the time period for obsevation and the bin size.
If you want, you can use "percent" to be any array you want.
The only improvement I can see is you have the chart at the selected value.... |
| Fund Screener | Dima Rasnitsyn | 2001-10-13 12:58:30 | Level: medium exploration (3 comments) | Details |
| Rank mutual funds [or securities] based on their rates of change (or smoothed ROCs), and see how much time passed since buy/sell signals generated by various systems.
... |
| Future MA Projection | OzFalcon | 2006-10-02 18:12:20 | Level: basic indicator (0 comments) | Details |
| A very basic example of Future Projection using various shift functionality of Amibroker. This example projects a Simple MA. ... |
| Future Plotting of Time and Price | David K. | 2009-06-29 20:28:45 | Level: medium showemail,function (0 comments) | Details |
| This formula plots time and price in the blank space on the right of the chart. To use this you must make sure that \"Preferences\" > \"Charting\" > Blank bars in right margin is set to a value of greater than 0.
An example is provided at the bottom of the chart for plotting lines with starting ar... |
| Future Plotting of Time and Price | wooziwog | 2009-06-29 20:30:30 | Level: medium showemail,function (6 comments) | Details |
| This formula plots time and price in the blank space on the right of the chart. To use this you must make sure that \"Preferences\" > \"Charting\" > Blank bars in right margin is set to a value of greater than 0.
An example is provided at the bottom of the chart for plotting lines with starting ar... |
| Futures - Dollar Move Indicator | Tommy Beard | 2005-05-23 04:53:11 | Level: basic indicator (0 comments) | Details |
| This AFL Code offers the same feature as Track N Trade Pro which allows quickly seeing the Dollar Amount of a move in a Futures Contract. The time period is selected by left clicking twice on the graph to select the beginng date and doing the same to select the end date. The time period is also di... |
| Futures - Dollar Move Today Indicator | Tommy Beard | 2005-05-24 05:30:06 | Level: basic indicator (0 comments) | Details |
| This AFL for Futures Contracts will show the Percent Change, Point Change, and Dollar Movement compared to the Prior Day. Click on any bar and you will see the values in the title. Symbols used in formula are those of BriteFutures which is free data and downloadable into Amibroker.... |
| Gann Five Day pullback | Steve Wiser | 2001-07-05 19:24:18 | Level: basic system,exploration (5 comments) | Details |
| Uses Gann Five day pull back for buy signal.... |
| Gann HiLo Indicator and System | Steve Wiser | 2001-07-05 19:17:42 | Level: basic showemail (1 comments) | Details |
| Uses a Gann HiLo Indicator to build a system for testing.... |
| Gann level plotter | engr sameer | 2007-12-19 11:18:56 | Level: basic system,exploration,indicator,commentary,function (5 comments) | Details |
| The formula plots the latest three gann levels,
It changes automatically when the level is breached.
you can change the parameters to suit the stock.
... |
| Gann Swing Chart | Geoff Mulhall | 2001-06-25 05:13:31 | Level: semi-advanced indicator (6 comments) | Details |
| A Gann Swing Chart is similar to a Kanji chart but uses high and low instead of open and close. Refer Beyond Candlesticks by Steve Nison. ... |
| Gann Swing chart v41212 | talal | 2008-01-23 13:36:31 | Level: advanced system,exploration,indicator,commentary,function (3 comments) | Details |
| _SECTION_BEGIN("Gann Swing chart v4 ");
/* Gann Swing chart v4 */
/* Last modified 24 Feb 2001 */
/* AFL implementation by */
/* (C)2001 Tomasz Janeczko */
/* one and two - bar reversal version */
/* Change this to 1 for two-bar mode */
twobarmode = 0;
outsidebar = Outside();
insidebar... |
| Gap and Circuit | Ravi S Ghosh | 2008-02-25 08:16:50 | Level: medium exploration (5 comments) | Details |
| It is an exploration that scans those scrips that open and close above earlier day's price for 2 consecutive days thus forming a bullish pattern (long candidates) or those scrips open and close below earlier day's price for 2 consecutive days thus forming a bearish pattern (shorting candidates). Usu... |
| Gartley 222 Pattern Indicator | Daniel Ervi | 2004-04-09 17:07:48 | Level: semi-advanced indicator (13 comments) | Details |
| A port of the Wealth-Lab code posted by Mark Conway to the Wealth-Lab forums. It has been adapted to an AFL indicator, but with a little work it could be made into a scan or even a trading system.... |
| garythompson | Gary Thompson | 2005-04-07 06:29:05 | Level: basic indicator (2 comments) | Details |
| Bill Williams Awesome Oscillator ( a momentum Oscillatr) based on the profitunity trading approach. See "Trading Chaos" Bill williams for full description... |
| garythompson | Gary Thompson | 2005-04-07 06:30:20 | Level: basic indicator (3 comments) | Details |
| Bill Williams Awesome Oscillator ( a momentum Oscillator) based on the profitunity trading approach. See "Trading Chaos" by Bill williams for full description and useage - good for wave counting... |
| Gordon Rose | Gordon Rose | 2004-02-05 00:05:21 | Level: semi-advanced system,exploration,indicator (18 comments) | Details |
| Both indicator and exploration code for combination of fibonacci retracements identified in "Fibonacci for the Active Trader" by Derrik Hobbes. Determines pivots, draws retracements, and explores for them.... |
| Guppy moving averages | Tomasz Janeczko | 2001-06-16 08:38:56 | Level: basic indicator (2 comments) | Details |
| A set of moving averages of different periods. An example on using multiple graphs in single indicator window.... |
| half-automated Trading System | Thomas Zmuck | 2001-12-21 16:45:47 | Level: basic system,exploration (4 comments) | Details |
| This System finds stocks, where the price reached a support or resistance line, that you have manually drawn.
You must give every line any of these 6 predifined StudyID's
(RE,SU,UP,DN,RI,ST). The system automaticaly detects, if the line is currently a support or resistance line.
There are two m... |
| hassan | hassan | 2005-12-02 06:52:18 | Level: basic system (0 comments) | Details |
| guru commentay.afl
Balance of Power.afl
... |
| Head & Shoulders Pattern | Dimitris Tsokakis | 2002-02-27 05:27:02 | Level: medium exploration (2 comments) | Details |
| For a short description of Head & Shoulders Pattern you may see at
http://www.chartpattern.com/head_sholuders.html
http://www.chartpatterns.com/headandshoulderschartsstocks.htm
etc.
Paste the formula in Automatic Analysis and Explore for n last quotations, n=1.
Paste the same formula in Indicat... |
| Heatmap V1 | Jorgen Wallgren | 2009-03-07 06:13:40 | Level: medium exploration,indicator (4 comments) | Details |
| This Heatmap let you to display and sort data for 4 up to 100 symbols at one time. The code allows you to change the sort options, such as Change %, Volume, ADX Trend etc, and will display the data with the result and color coding. Using it with a RT connection will give you an immediate update ... |
| Heikin-Ashi(Koma-Ashi) with Moving Average | TOBY | 2008-08-01 01:33:34 | Level: basic indicator (0 comments) | Details |
| This is AFL of Heikin-Ashi(Koma-Ashi)with Moving Average.
It's smoothly Heikin-Ashi derivative indicator,
and prevent to collapse a graph for first bars.
----
TOBY
http://tobysoft.net/... |
| Heinkin-Ashi | Dennis Skoblar | 2007-07-16 22:44:50 | Level: basic indicator (1 comments) | Details |
| Heinkin-Ashi... |
| HH-LL-PriceBar | Rene Nederhand | 2008-01-20 17:18:45 | Level: basic indicator (1 comments) | Details |
| This is the Amibroker version of the HH-LL-Pricebar (higher high, lower low pricebar) from eSignal. It shows the usual candlesticks in three distinct colors:
If the closing price is above the previous high (higher high) the outline of the candle will be green; if the closing price is below the pre... |
| Hilbert Study | Steve Wiser | 2001-07-05 19:32:15 | Level: advanced system,indicator (7 comments) | Details |
| Using the Hilbert Metastock code, my interpetation of this
indicator that indicates whether a stock is trending or
not. This is set up as a system buying in at the start of
a trend.... |
| Historical Volotility Scan - 6/100 | Dennis Skoblar | 2005-06-15 16:30:22 | Level: basic indicator (2 comments) | Details |
| The is the 6/100 Historical Volotality Indicator as described in the book "Dave Landry On Swing Trading". The stock is poised to move when the 6/100 Indicator reading is equal to or below .50 (50%)... |
| Historical Volotility Scan - 50 Day | Dennis Skoblar | 2005-06-14 04:02:32 | Level: basic indicator (0 comments) | Details |
| Shows how volotile the stock is over a a 1 year period. A reading of 40 or above is ideal for "where the action is."... |
| Hook Reversals | Larry Lovrencic | 2001-09-04 01:47:26 | Level: basic exploration (1 comments) | Details |
Find Hook reversals using automatic analysis
/*Hook Reversals Automatic Analysis
by Larry Lovrencic*/
buy=O<(L+0.2*(H-L)) AND C>(H-0.2*(H-L)) AND H[ref(L,-1);
sell=O>(L+0.8*(H-L)) AND C<(H-0.8*(H-L)) AND H][ref(L,-1);...] |
| Hull Moving Average | avi b a | 2007-01-01 14:21:41 | Level: basic indicator (9 comments) | Details |
| The Hull Moving Average solves the age old dilemma of making a moving average more responsive to current price activity whilst maintaining curve smoothness.... |
| Hull Multiple Moving Averages | Terry Dactil | 2008-09-19 00:14:28 | Level: basic indicator (0 comments) | Details |
| The MMAs used in Alan Hull's "Active Investing"... |
| Hull Range Indicator | Julian Bunko | 2007-12-04 08:18:19 | Level: basic indicator (0 comments) | Details |
| Alan Hull's Range Indicator for weekly charts. From his book "Active Investing".
... |
| Hull Rate of Return Indicator | Julian Bunko | 2007-12-04 07:58:30 | Level: basic indicator (0 comments) | Details |
| The formula for the Rate of Return Indicator for weekly charts. From Alan Hull's excellent book "Active Investing" (published in Australia by Wrightbooks). ... |
| Hull with DEMA | Nicolas Janin | 2007-02-26 18:20:34 | Level: medium indicator (1 comments) | Details |
| This is a simple variant on the Hull mobile average. It simply uses Double Exponential MA instead of weighted MA, and thus, it is more reactive than the popular version.
function HullDEMA(series, p) {
return DEMA( 2*DEMA(series,int(p/2))- DEMA(series,p),int(sqrt(p)));
}
If you put the above... |
| Hurst "Like" DE | Fred Tonetti | 2006-10-16 09:50:22 | Level: medium indicator (6 comments) | Details |
| Hurst "Like" DE's using Millard style CMA's and nth Order Polynomial Fit for extrapolation to the selected bar and possibly beyond.... |
| Hurst Constant | Steve Wiser | 2001-07-05 19:30:48 | Level: basic indicator (2 comments) | Details |
| This indicator is an interesting study in chaos theory.
Just look up the title in any web search engine and start
reading.
This indicator is fails to calculate for some stocks. It
requires at least 600 hundred quotes to work.... |
| IB Backfiller | Barry Scarborough | 2008-09-12 15:35:31 | Level: basic indicator (0 comments) | Details |
| A formula that will back fill all the symbols and plot the results. Create a file with all your tickers by using AmiQuote and inporting the symbols. Save the symbol list to a txt or csv file and then import that to watch list 40. If you use another watchlist you will have to change the watchlist ass... |
| Ichimoku Chart | Prakash Shenoi | 2006-08-11 12:30:12 | Level: medium system,indicator (11 comments) | Details |
| Ichimoku Chart is a trend following system similar to Moving averages. Time spans of 9, 26 and 52 are used. According to Ken Muranaka, Ichimoku charts depicts market timing, resistance/support,and possibly false break outs, all in one chart, in one panoramic view. For more details, check this link... |
| Ichimoku charts | Tomasz Janeczko | 2001-06-16 08:25:56 | Level: medium indicator (5 comments) | Details |
| Ichimoku charts - yet another Japanese charting technique is enjoying new wave of popularity. Just a few months ago, in the October 2000 issue of Technical Analysis of Stocks and Commodities (TASC) magazine an article covering this charting method was presented. I will not dig into details - they ar... |
| Ichimoku with plot mofified to use cloud function | Misha Nathani | 2008-02-15 23:09:43 | Level: basic indicator (7 comments) | Details |
| This formula is the original Prakash Senoi formula with the plot function modified to use the new cloud funtion. The cloud as green shows uptrend support, and as red shows resistance above downtrend.
I haven't worked out how to allow plotting of the cloud out ahead of today, as is done in a number ... |
| IchimokuBrianViorelRO | Viorel CRISTEA | 2009-06-18 01:59:30 | Level: medium system,indicator (6 comments) | Details |
| Ichimoku from Brian with some improvments.... |
| IFT of RSI - Multiple TimeFrames | Brian Richard | 2004-07-30 23:43:41 | Level: semi-advanced indicator (3 comments) | Details |
| This is the Inverse Fisher Transform (IFT) of the Relative Strength Index (RSI), across multiple timeframes. It only shows two timeframes at any given time -- the currrent chart time frame, and the next largest time frame (see code for details).
Hourly chart: When the IFT is oversold on the daily... |
| In Watch List | Bill Schmidt | 2008-09-13 14:26:01 | Level: basic indicator (0 comments) | Details |
| This program lists in a chart pane all the watch lists that the current symbol belongs to.... |
| Index and ETF trading | scienide | 2009-05-26 18:18:06 | Level: medium system (0 comments) | Details |
| The system is designed to trade equity ETFs and indices. Weekly ADX is used to determine long-term trend, whereas daily Stochastic triggers the entry. The exits are conditioned by crossovers of EMAs.
Your comments and critique are more than welcome.... |
| Index of 30 Wk Highs Vs Lows | Geoff Mulhall | 2002-11-08 22:47:11 | Level: semi-advanced exploration,indicator (0 comments) | Details |
| The number of stocks making new 30 week highs vs the number making new 30 week lows is a useful adjunct to the Advance Decline line, especially when both are compared to a market index (eg XAO Australian All Ords or NYSE Composite).
Attached is both an exploration to create the 2 indices, and ind... |
| Indicator Explorer (ZigZag) | Michael.S.G. | 2003-08-05 21:49:32 | Level: medium indicator (2 comments) | Details |
| This example show how you can "Explore" an indicator,
This is usefull for displaying the effects of pattern detection functions on Signals.
A simple example of this, As show by this AFL, Is the ZigZag indicator.
Use CTRL-R to bring up the Parameters Dialog to Explore.
... |
| interactively test discretionary trading | DD | 2009-03-08 11:15:28 | Level: medium system,indicator,function (1 comments) | Details |
| Add manual buy/short signals. Useful to test your performance as a discretionary trader, or to get a feeling of the behavior of indicators [since by looking at the chart, one is being misled by the future bars].
Insert this formula into your favorite chart setup, then either select the last visible... |
| Intraday Average Volume | Bill Schmidt | 2008-09-11 14:15:08 | Level: basic indicator (0 comments) | Details |
| This indicator calculates intraday average volume by averaging each bar with the same bar for x number of previous days.... |
| INTRADAY HEIKIN ASHI new | ali | 2006-09-22 19:07:15 | Level: advanced system (1 comments) | Details |
| INTRADAY HEIKIN ASHI new... |
| IntraDay Open Marker | JJ Hurley | 2007-01-01 08:24:32 | Level: semi-advanced commentary,function (2 comments) | Details |
| Marks on an intraday chart the bar that is most likely to be the real open for the day (based on the sudden increase in volume that should occur at the real open, compared to the volume during the pre-open). Avoids the problems of using time functions to find the open that occurs after the pre-open ... |
| Intraday Range and Periods Framer | bluueskyy | 2009-08-13 21:47:31 | Level: medium indicator (0 comments) | Details |
| This script will draw horizontal lines for the following items:
- Previous day close (red dashed line)
- Today open (pink dotted line)
- Today high and low (pink lines)
- Premarket range 8:30am to 9:30am EST (blue dashed lines)
- 5 min opening range (dark green lines)
- 30 mintue opening ran... |
| Intraday Strength | Rahul Yadav | 2008-08-29 06:58:40 | Level: medium system,indicator (0 comments) | Details |
| It is useful line study for intraday treading to decide the strength of a stock. it will divide the stock movement in to three zone.
precises in upper zone indicate bullishness.
precises in middle zone indicate no tread zone(sideways market).
precises in lower zone indicate bearish zone.... |
| Inverted Plotted Volume Overlay Indicator | Jorgen Wallgren | 2009-03-25 04:37:23 | Level: medium indicator (0 comments) | Details |
| This is an inverted plotted volume, displayed at the upper part of the main chart. Just drag and drop this code into your main chart, adjust the moving average and height to your preference.
... |
| IO ... An Intelligent Optimization Driver for AB | Fred Tonetti | 2007-03-11 15:08:08 | Level: advanced indicator,function (6 comments) | Details |
| v2.2
See the doc... |
| JEEVAN'S SRI CHAKRA | M.J.JEEVAN LAL | 2009-05-22 18:44:55 | Level: basic system (1 comments) | Details |
| I HAVE SLIGHTLY ALTERED GRAHAM\'S P&F CHART FOR MY CONVENIANCE -- TRY THIS... |
| Jesse Livermore Secret Market Key | KH Tang | 2009-08-22 10:15:27 | Level: advanced indicator (2 comments) | Details |
| Jesse Livermore Secret Market Key, in his original book, was break into a 6 column chart. Namely \"Up Trend\", \"Natural Rally\", \"Secondary Rally\", \"Down Trend\", \"Natural Reaction\", and \"Secondary Reaction\".
When put into flow chart, it work pretty much as the Point and Figure method, b... |
| Kagi Chart | Graham Kavanagh | 2002-11-29 05:12:31 | Level: medium system,indicator (10 comments) | Details |
| Kagi swing chart with change based on share price. Swing ranges from 3 to 5%.
Place in indicator builder.... |
| Keltner Channel | Ara Kaloustian | 2002-05-21 04:24:18 | Level: medium indicator (0 comments) | Details |
| Keltner Channels are similar to Bollinger bands in that they create an envelope around prices in order to indicate oversold / overbought conditions.
Bollinger Bands use standard deviation to measure volatility, while Keltner channels use ATR (Average True Range).
Keltner Channels provide a smo... |
| Know Sure Thing | Tomasz Janeczko | 2001-06-16 08:42:59 | Level: basic indicator (0 comments) | Details |
| Daily, Short-time Know Sure Thing indicator. This is smoothed version of classical rate-of-change indicator.
... |
| Lagging MA-Xover | Thomas Heyen | 2006-06-08 05:27:49 | Level: medium system (1 comments) | Details |
| Fast DEMA crossing its same period lagging EMA.... |
| Larry William's Volatility Channels | Prakash Shenoi | 2006-08-08 09:47:28 | Level: basic indicator (0 comments) | Details |
| Volatility channels (or bands) move with the stock, quickly adjusting to price movements. When a security trends outside the volatility channel, it adds strength to a high probability long trade . Look out for a stock to "trend" outside these bands to catch the momentum. When the swing increases, th... |
| lastNDaysBeforeDate | DiscusLorraine | 2006-11-18 10:48:58 | Level: basic showemail,function (0 comments) | Details |
| Function that returns the closing prices of the bars belonging the n previous trading days before a given date (expressed in DateNum() format).
The resulting array contains Null cells everywhere except for the bars within the chosen interval. I find it useful with intraday data to retrieve the pr... |
| Linear Regression Line & Bands | Geoff Mulhall | 2002-05-27 06:31:34 | Level: semi-advanced indicator (5 comments) | Details |
| A linear regression line plots the a least squares line of best fit through the closing price. In this case bands are also plotted above and below the central linear regression line to indicate the maximum excursion of the stock from the line.... |
| Linear Regression Line w/ Std Deviation Channels | Patrick Hargus | 2005-03-07 00:58:06 | Level: medium indicator (19 comments) | Details |
| Plot a linear regression line of any price field available on a chart for a period determined by the user. 2 Channels are plotted above and below based on standard deviations of the linear regression line as determined by the user. A look back feature is also provided for examining how the indicat... |
| LoadAB.vbs | murthy suresh | 2007-09-17 21:20:08 | Level: medium showemail,function (0 comments) | Details |
| launch amibroker thro commandline. you can pass parameters that take the database path... |
| Log Time Scale | Jeff Parent | 2004-04-23 10:03:05 | Level: medium function (0 comments) | Details |
| Uses Param feature to adjust increaasing time compression as chart moves back in time. A bit like looking at multiple time frame charts, except its all in one chart.... |
| LSMA | Ivanov Denis | 2009-10-01 02:34:26 | Level: medium indicator (0 comments) | Details |
| This indicator is used in conjunction with the trading system WCCI... |
| Luna Phase | OzFalcon | 2006-08-31 23:36:11 | Level: basic indicator (12 comments) | Details |
| This program helps anyone who needs to know the Moon's phase, age, distance, and position along the ecliptic on any date within several thousand years in the past or future. The age of the moon in days as well as its visual phase are given. The Moon's ecliptic longitude is calculated as well as the ... |
| LunarPhase | Marcelin Tudor | 2006-09-03 10:02:09 | Level: basic exploration (11 comments) | Details |
| Plot Full Moon and New Moon on your chart. Simply and easy.... |
| MA Difference 20 Period | Larry Lovrencic | 2001-09-02 21:06:20 | Level: basic indicator (0 comments) | Details |
| This indicator displays how far the closing price is above or below a 20 period moving average in % terms. It is displayed as a histogram and the bars are green if the closing price is above the MA and red if the closing price is below the MA.
T may be changed to alter the MA period. ie Change T=... |
| MACD and histogram divergence detection | rami esor | 2008-05-15 05:54:22 | Level: advanced system,indicator (3 comments) | Details |
| MACD and histogram divergence detection... |
| MACD commentary | Tomasz Janeczko | 2001-06-16 08:54:12 | Level: medium system,commentary (1 comments) | Details |
| This sample commentary shows how to use WriteVal() and WriteIf functions. May be also used as a simple trading system.... |
| MACD Histogram - Change in Direction | crash | 2006-05-03 07:33:26 | Level: basic indicator (7 comments) | Details |
| This indicator shows the value of tomorrow's Closing Price in order for the slope of the MACD Histogram to change Direction. (ie. changing from a positive slope to a negative slope or changing from a negative slope to a positive slope)... |
| MACD indicator display | Paul Moore | 2006-05-21 19:36:21 | Level: medium indicator (6 comments) | Details |
| Sometimes, it can be difficult to view the MACD histogram bars when the MACD lines are very close together, causing the bars to be very short. This indicator automatically adjusts the scaling of the MACD histogram bars such that they occupy the maximum area in its indicator pane.... |
| MACD optimize | Grayesso | 2003-12-10 14:12:39 | Level: advanced showemail,function (0 comments) | Details |
| MACD (12,26,9 - 5,34,5 <==> by default - by Bill Williams... |
| Main price chart with Rainbow & SAR | Chih-chiang Chen | 2001-11-04 21:55:45 | Level: basic indicator (2 comments) | Details |
| The price chart will change color according to sar().
The red line= 20ma and Blue line = 50MA
For better visual effect.
Could someone add volume chart in this chart(like the original price chart does)?... |
| MAM | Salil V Gangal | 2002-11-10 23:19:20 | Level: medium indicator (2 comments) | Details |
| MAM - Most Anchored Momentum.
This indicator is similar to FastTrack Rank, except it has *much* less noise. This indicator is also similar in looks (on chart) to RSI. However, this is *unbounded*, so it does not flatten out at the extremes.
The author of this indicator has create PDF documen... |
| Manual Bracket Order Trader | Barry Scarborough | 2008-11-16 11:30:28 | Level: semi-advanced system (0 comments) | Details |
| This formula allows testing bracket orders sent to TWS. This will help users see how bracket orders are handled by TWS and help users design their bracket orders for auto trading.... |
| Market Breadth Chart-In-Chart | Jorgen Wallgren | 2009-04-07 05:05:49 | Level: medium indicator (4 comments) | Details |
| In order to save chart space, I created this gfx code which gives a \"chart-in-chart\" feature. Drag and drop this file into your price chart and adjust the location and size of this chart. Since this indicator is decribed in an article with copyright, for usage please refer to the original article ... |
| Market Direction | Dimitris Tsokakis | 2002-03-24 14:03:12 | Level: advanced indicator (2 comments) | Details |
| Market direction is described through 3 composite tickers, based on Relative slope values. You may read on daily basis the % distribution of bullish, congestive and bearish phase of the Market.
... |
| Market Facilitation Index VS Volume | Nick | 2007-10-22 09:34:35 | Level: basic exploration,indicator (0 comments) | Details |
| Market Facilitation Index VS Volume .Thanks to Frikkie... |
| Market Profile | noname | 2008-06-21 18:19:40 | Level: basic indicator (13 comments) | Details |
| Market Profile with Low-level graphics... |
| Market Profile & Market Volume Profile | noname | 2006-05-28 07:10:16 | Level: basic indicator (17 comments) | Details |
| Market Profile & Market Volume Profile... |
| McClellan Oscillator | Tomasz Janeczko | 2001-06-16 08:26:59 | Level: basic indicator (0 comments) | Details |
| The McClellan Oscillator, developed by Sherman and Marian McClellan, is a market breadth indicator that is based on the smoothed difference between the number of advancing and declining issues on the New York Stock Exchange. The McClellan Oscillator is one of the most popular breadth indicators. Buy... |
| McClellan Summation Index | Tomasz Janeczko | 2001-06-16 08:27:58 | Level: basic indicator (2 comments) | Details |
| The McClellan Summation Index is a market breadth indicator developed by Sherman and Marian McClellan. It is a long-term version of the McClellan Oscillator and its interpretation is similar to that of the McClellan Oscillator except that it is more suited to major trend reversals. For more extensiv... |
| Meu Sistema de Trading - versão 1.0 | João Alexandre | 2007-02-26 18:54:19 | Level: basic system (3 comments) | Details |
| Baseado no livro "Come Into My Trading Room" de Dr.Alexander Elder, meu sistema plota um envelope, linhas de maxima e minima historica e pontos de compra e venda baseados no cruzamento de MACD com a linha de sinal.... |
| MFE and MAE and plot trades as indicator | murthy suresh | 2007-10-25 21:06:09 | Level: semi-advanced system,indicator (0 comments) | Details |
| calculate mfe and mae. plot trades as indicator.... |
| mfimacd | abosliman2005m | 2007-07-02 18:30:27 | Level: basic commentary (3 comments) | Details |
| aa... |
| mitalpradip | mitalpradip | 2009-01-03 00:49:14 | Level: basic exploration (0 comments) | Details |
| help... |
| Mndahoo ADX | Ahmed Mohammed Al-asmari | 2006-10-16 23:44:21 | Level: advanced indicator (4 comments) | Details |
| Average Directional Index (ADX):
--------------------------------
the Average Directional Index (ADX) in order to evaluate the strength of the current trend, be it up or down. It's important to determine whether the market is trending or trading (moving sideways), because certain indicators give m... |
| MOCS | Jean-Luc Saillard | 2009-10-01 11:09:01 | Level: basic indicator (0 comments) | Details |
| Formula based on an article of Technical Analysis of S&C (August 2008)
\"Relative Strength as a selling tool\" by Michael J. Carr
This indicator is meant to calculate the RS of a stock as compared to the S&P 500... |
| Modified Darvas Box | davis | 2006-03-21 04:46:07 | Level: basic system (7 comments) | Details |
| After reference the Darvas Box code from Stephane, I added an additional rule of sell. So that the profit can increase a bit. The idea is the found the suitable selling point after we found the box top. When it meet the highest point and turn back, we sell if the different between the highest price ... |
| Modified Head & Shoulder Pattern | Wells | 2007-08-08 00:44:18 | Level: medium exploration (1 comments) | Details |
| I made some changes to Dimitris Tsokakis's Head & Shoulder recognition program. Added price and volume filters. It will scan for penetration of the neckline.
This type of code are not capable of backtesting. Anybody has a way to backtest it, let me know.... |
| Modified Momentum Finder DDT-NB | Frank Snay | 2002-01-03 15:34:58 | Level: basic exploration (0 comments) | Details |
| A Ranking System for stocks or mutual funds that uses Rate of Change (momentum) for three time frames and Rate of Change of Rate of Change (acceleration) for two time frames. The system uses weighted Rate of Changes with the most recent periods having more weight. Combined with non-weighted accele... |
| Modified-DVI | RAHUL YADAV | 2008-09-18 01:20:09 | Level: medium indicator (0 comments) | Details |
| It is modified daily volume indicator which shows active buyer or seller at an instant. basically useful for intraday trading.
blue line indicate buyers, and red line indicate seller.... |
| Momentum | Geoff Mulhall | 2002-05-25 07:36:40 | Level: basic indicator (3 comments) | Details |
| This is a simple momentum formulae.
In his book Bernstein provides a simple but effective trading system based on momentum. Can be used for both short and long trades and provides simple, clear entry and exit criteria.... |
| Momentum | ali | 2006-09-28 18:10:13 | Level: basic exploration (0 comments) | Details |
| Momentum .afl... |
| Monthly bar chart | Graham Kavanagh | 2003-01-01 22:47:12 | Level: medium indicator (1 comments) | Details |
| Weekly chart to be shown in indicator window. This is for fixed months starting at first trading day of each month.... |
| Monthly Coppock Guide | Brett Forrester | 2001-06-27 21:53:51 | Level: basic indicator (2 comments) | Details |
| One of the best megaphones of market action is the Coppock guide, a long-term price momentum indicator that effectively filters out short-term and
intermediate-term market swings to issue a clear message on the market's underlying long-term trend. Tim Hayes of Ned Davis Research reports on
the s... |
| Moving Average "Crash" Test | Dimitris Tsokakis | 2001-09-09 11:20:39 | Level: basic indicator (2 comments) | Details |
| 3 basic model functions, useful to examine the
response of various moving averages.
The "step" model, gaps from 10 to 20 in one day,
stays at 20 the next 19 days and gaps to 10 again.
The "linear" model increases and decreases in linear
mode.
The "sinusoidal" approximates the reality, presen... |
| Moving Averages NoX | Thomas Heyen | 2006-06-07 17:14:52 | Level: medium system (1 comments) | Details |
| Instead of using Crossover of Moving Averages, this model will follow reversals of a short term Moving Average.
A long term Moving Average is used for general trend determination.... |
| Moving Trend Bands (MTB) | Uenal Mutlu | 2003-04-08 21:00:27 | Level: basic indicator (5 comments) | Details |
| Around the Moving Trend Average an upper and lower band similar to Bollinger Bands is implemented. Maybe this is even better than BB (?).... |
| MS Darvas Box with Exploration | TohMz | 2008-06-05 08:45:28 | Level: basic system,exploration (13 comments) | Details |
| Translate from http://trader.online.pl/MSZ/e-w-Darvis_Box.html
- Improve scripting
* Allow Darvas Box Color/Style Changing
- Exploration
Filter:
Scan Price From X To Y
Buy: Today Buy Volume must be > N time of Buy MAV
AND The previous Day High m... |
| MultiCycle 1.0 | Brian Richard | 2004-07-30 00:42:57 | Level: semi-advanced indicator (9 comments) | Details |
| This looks at four different cyclic indicators together at one time. When three oscillators synchronize, this signals a strong buy or sell.
The white dotted line is the Volume Flow Indicator, or VFI. If the VFI is above the zero line, look for synchronized oscillators rising out of an oversold c... |
| Multiple Ribbon Demo | Jorgen Wallgren | 2009-03-17 22:46:37 | Level: medium indicator (3 comments) | Details |
| I was inspired by Dennis Brown\'s great looking chart, and here is one of the results:
This demo code comes with a ready to use Multiple Ribbon code and a FillColor Function which will return the different shades of the color according to your specifications. You plot a Ribbon by calling the functi... |
| Multiple sinus noised | Mich. | 2006-11-18 20:47:52 | Level: basic showemail,function (0 comments) | Details |
| Just to create multiple sinus added (all are in phase and frequency did'nt vary).
Possibility to add trend, noise and bias (a mean).
Purpose is to test how perform prediction and spectral analysis on basic signal.... |
| Murrey Math Price Lines | Jozsef Toth | 2008-03-29 18:05:18 | Level: basic indicator (1 comments) | Details |
| http://www.murreymath.com/
http://mysite.verizon.net/bonniehill/pages/murrey.html
http://mysite.verizon.net/bonniehill/pages/w.d.gann.html
LastVisibleIndex error fixed.... |
| N-period candlesticks (time compression) | Junya Ho | 2002-12-24 03:02:05 | Level: basic indicator (0 comments) | Details |
| Construct n-period candlesticks while viewing any price chart. E.g. n=5 is ~ weekly, n=20 ~monthly.
This saves you from creating multiple windows or switching between daily/weekly/monthly views.
... |
| NASDAQ 100 Volume | Jorgen Wallgren | 2009-03-07 06:19:27 | Level: basic indicator (0 comments) | Details |
| This code is an add-on to my Heatmap code and to be used if you trade NASDAQ 100 Stocks. In the Heatmap program, you have to enable \"Create Composite\". The Heatmap will then collect the required information for this indicator and display the total NASDAQ 100 traded Volume. Please keep in mind that... |
| Negative ROC Exporation | Mubashar Virk | 2006-10-03 14:34:52 | Level: basic exploration (1 comments) | Details |
| Hi there guys and ladies, I have a negative ROC exploration for all you tight-traders and beginners. Use it on you EOD data, it may give you some good picks for the next day. Needless to say you must study the securities by using William, Chaikin, and Bollinger's. Also try to put your own filtration... |
| Nick | Nick | 2007-08-28 06:28:11 | Level: basic indicator (0 comments) | Details |
| Airbag against Drunken Market... |
| nifty | prakash | 2007-01-01 05:38:14 | Level: basic exploration,indicator (15 comments) | Details |
| lost for nifty tel ome now... |
| nikhil | ng | 2005-06-12 17:43:16 | Level: basic indicator (1 comments) | Details |
| I am a student.Recently started trading and wanna learn how to use trading systems.... |
| Nonlinear Ehlers Filter | Chris Yeoh | 2004-11-14 23:52:20 | Level: medium indicator (0 comments) | Details |
| Taken from TASC's April 2001 Issue.... |
| Noor_Doodie | Noor_Doodie | 2006-02-23 11:59:33 | Level: medium indicator (0 comments) | Details |
| Elder's Market Thermometer:
Use this to measure market inertia.... |
| Notepad++ syntax highlights for AFL | Mark H. | 2007-02-06 00:44:31 | Level: basic indicator (3 comments) | Details |
| Overwrite or add to C:\Documents and Settings\youruserid\Application Data\Notepad++\userDefineLang.xml.... |
| NR4 Historical Volatility System | Daniel Ervi | 2001-09-08 17:28:09 | Level: medium exploration (5 comments) | Details |
| Connors and Raschke NR4 Historical Volatility System. Compares the 6 day volatility to the 100 day volatility. When this ratio drops below 50%, a buy stop and sell stop bracket the current price, expecting historical volatility to revert to the mean. Four day Narrow-Range (NR4) and Inside Day pat... |
| NRx Exploration | TohMz | 2008-05-31 03:25:01 | Level: basic exploration (0 comments) | Details |
| NR1, NR4, NR7 Exploration for Narrow Range Bar
Parameters Options:
- Scan NR1: Yes/No
- Scan NR4: Yes/No
- Scan NR7: Yes/No
- Min Volatility_Ratio: 0.5 default... |
| nth ( 1 - 8 ) Order Polynomial Fit | Fred Tonetti | 2006-10-03 18:18:42 | Level: medium showemail,function (1 comments) | Details |
| nth ( 1 - 8 ) Order Polynomial Fit of data using Gaussian Elimination for simultaneous solution of multiple linear equations. It can extrapolate forward and/or backwards... |
| OptimizationBatch.js | Rick Charon | 2004-08-11 17:47:19 | Level: medium showemail,function (2 comments) | Details |
| This is a JavaScript that batchs up Optimizations on a list of stocks. (You provide the optimization routine in the call to LoadFormula). The optimization will be run on each stock in the watch list and results saved to a csv file.... |
| Option Calls, Puts and days till third friday. | Vladimir Gaitanoff | 2006-05-06 14:09:53 | Level: medium indicator (3 comments) | Details |
| // Initialization
_SECTION_BEGIN("Option Parameters");
StrikePrice = Param("Strike Price", 45, 0, 10000, 0.01);
InterestRate = Param("Interest Rate %", 6, 0, 100, 0.05);
//DaysToExpiration = Param("Days To Expiration", 30, 1, 365, 1);
Volatility = Param("Volatility", 0.3, 0, 1, 0.05);
_SECTI... |
| Ord Volume | Peter Bjarheim | 2007-12-14 15:56:33 | Level: medium exploration,indicator (7 comments) | Details |
| Ord Volume indicator as described on http://www.ord-oracle.com/. I have not found any exact description, so I am using the built in Zig function to pick the swings.
This formula is designed to pick out the swings in a stock and then measure the force between the swings. The
force is the amount o... |
| Overbought issues, Oversold issues | Dimitris Tsokakis | 2002-03-24 14:42:36 | Level: advanced indicator (1 comments) | Details |
| Definitions
1. Overbought issues (OBI)
The population of overbought stocks, under any overbought criteria, calculated as a variable on daily basis.
Extension may be considered on weekly or monthly or yearly basis.
2. Oversold issues(OSI)
The population of oversold stocks, under any oversol... |
| P&F Chart - High/Low prices Sept2003 | Graham Kavanagh | 2003-10-01 02:44:23 | Level: semi-advanced indicator (18 comments) | Details |
| Supersedes other P&F versions in this and yahoo files.
P&F chart for V4.40 and above. Based on close prices.
Problem resolved with boxes not being created at right prices due to the 9 decimal place inaccuracies for numbers with decimals. This was causing a problem creating the rising and falling b... |
| P&F chart with range box sizes | Graham Kavanagh | 2003-01-31 22:52:18 | Level: semi-advanced indicator (1 comments) | Details |
| Box values are set to be same between set price ranges. The screen image of the box is a single unit (cent) regardless of the box value.... |
| Parabolic SAR in JScript | Tomasz Janeczko | 2002-12-18 07:09:46 | Level: medium indicator (4 comments) | Details |
| This sample code shows parabolic SAR re-implemented
in JScript. Note that SAR is built-in function in AFL and
this code is provided as an example of AmiBroker scripting capabilities.... |
| Parabolic SAR in native AFL (v.4.31.1 required) | Tomasz Janeczko | 2003-04-13 10:42:45 | Level: semi-advanced indicator (1 comments) | Details |
| Here is a sample code that shows how to use for/if/else control statements introduced in AmiBroker 4.31.x BETA.
The code re-implements Parabolic Stop-And-Reverse system/indicator.
The code is quite similar to JScript version.... |
| Parabolic SAR in VBScript | Tomasz Janeczko | 2002-12-18 07:09:00 | Level: medium indicator (1 comments) | Details |
| This sample code shows parabolic SAR re-implemented
in VBScript. Note that SAR is built-in function in AFL and
this code is provided as an example of AmiBroker scripting capabilities.... |
| ParabXO | Thomas Ludwig | 2005-03-21 15:19:39 | Level: medium indicator (5 comments) | Details |
| This is an enhancement of the famous Parabolic SAR indicator by Welles Wilder. For more details see the remarks below.... |
| Pattern - Rectangle Base Breakout on High Vol | Jitu Telang | 2003-09-06 18:20:33 | Level: medium showemail,function (4 comments) | Details |
| Detects an upwards breakout from a rectangular base formation on a high volume.... |
| Pattern Recognition Exploration | Dimitris Tsokakis | 2001-09-03 14:03:35 | Level: medium exploration (11 comments) | Details |
| Paste the code in Automatic Analysis and Explore All Stocks for the last date of your data.
In Results click twice a label , for example "a TR" and you will collect all ascending Triangles marked with an "1".
This Exploration recognizes the following patterns:
+Ascending Wedges "aW"
+Descending ... |
| Pattern_-_Rectangle_Base_Breakout_on_High_Vol 2 | TohMz | 2008-05-28 19:06:00 | Level: basic exploration (2 comments) | Details |
| A powerful script that that the author created the function but did not create the exploration. It had put on the shelf for 5 years since 2003 till now.
Not a lot people understand it and know how to script it to make it operatable.
Run Analysis, click "Scan" or "Explore" will do.
Click on "... |
| Percentage Price Oscillator | kirubanandan | 2008-06-28 09:30:55 | Level: basic indicator (0 comments) | Details |
| Percentage Price Oscillator using two EMA's and a signal line. The first parameter value is an n-period EMA that is subtracted from another n-period EMA (the second parameter). The third parameter overlays an EMA of the PPO for use as a signal line. The standard 12, 26, 9 is automatically entered by... |
| Performance Check | Frank Snay | 2001-07-14 16:02:56 | Level: basic exploration (0 comments) | Details |
| /*
A Daily Performance Check of your Buy signal. Corrected and revised on 7/14/01.
Use to:
1. Help set Stop Losses, in percentages.
2. See if increase in rate of return levels off within the first 20 days.
3. See if signal is a "leading" indicator, and by how many days.
This is a different... |
| Performance Overview | Thomas Zmuck | 2002-08-24 08:32:35 | Level: advanced indicator (3 comments) | Details |
| This formula is for indicator builder and shows you the performance from 4 user-defined tickers or indices and the current ticker.
0% is always on the first visible bar over the zoomed area. You can also scroll the chart, 0% is always on the left.
Activate Percent in Indicator builder and select L... |
| Peterson | Marek Chlopek | 2001-10-17 02:55:21 | Level: basic system (1 comments) | Details |
| Trading System developed by Dennis Peterson, described in article "Common Themes in Trading" 09/27/01, Traders.com Advantage ... |
| PF Chart - Close - April 2004 | Graham Kavanagh | 2004-04-19 09:03:31 | Level: semi-advanced indicator (8 comments) | Details |
| P&F chart based on closing price.
Dates and bar numbers added for reference when the columns started and ended. Load file into IB.
Box size based on ATR of close price. Reverse = 3.
... |
| Pivot Finder | Mark | 2004-07-19 01:06:36 | Level: semi-advanced indicator (14 comments) | Details |
| /* **********************************
Code to automatically identify pivots
********************************** */
// -- what will be our lookback range for the hh and ll?
farback=Param("How Far back to go",100,50,5000,10);
nBars = Param("Number of bars", 12, 5, 40);
// -- Title.
T... |
| Pivot Point and Support and Resistance Points | Anthony Faragasso | 2002-04-25 09:04:53 | Level: basic commentary (6 comments) | Details |
| Guru Commentary, provides Pivot and support and resistance
points for the Next trading day.... |
| Pivot Point Graph | Tiziano Fogliata | 2001-06-23 13:30:29 | Level: medium indicator (1 comments) | Details |
| This indicator, using data from the previous trading day, calculates the next day's pivot point as well as support and resistance levels.
High, Low, and Close data are needed.
... |
| Pivot Point with S/R Trendlines | andrew kaufmann | 2004-11-08 08:13:56 | Level: basic indicator,function (4 comments) | Details |
| On charts less then an hour -e.g. 5 min chart, will plot the daily Pivot point and the hourly pivot point as a Line. In, addition, there are 3 adjustable support and resistance trendlines drawn using highs and the lows , % change is adjustable in the parameters.... |
| Pivots And Prices | reinsley | 2010-01-02 13:12:09 | Level: basic indicator (1 comments) | Details |
| // pivots and prices
// based on Pramod\'s comments http://www.amibroker.com/library/detail.php?id=617
// adapted by Reinsley : Plot Prices on Pivot and ajustable digits #
// mod by Sanjiv Bansal : take care of Highs or Lows when two adjacent bars are equal
// does not reference to future... |
| Pivots for Intraday Forex Charts | Ron Boles | 2005-03-19 22:13:50 | Level: basic indicator (3 comments) | Details |
| Heikin Ashi chart + pivots for intraday forex charting.
You can select 1 or 3 different pivot calculations.... |
| Plot Monthly,Weekly and Daily Moving average | Anthony Faragasso | 2002-03-02 16:27:46 | Level: basic indicator (2 comments) | Details |
| You can plot a Monthly , weekly and Daily Moving average
on your Daily custom price chart window without changing the view
settings. Also, Title information is included.... |
| plot tomorrows pivots on an intraday database | patrickdoherty | 2008-03-30 00:57:26 | Level: medium indicator (2 comments) | Details |
| I had been struggling with the code to plot todays pivots from yesterdays price when using an intraday database. There were none available in the Amibroker library which plotted correctly the pivots for tomorrow on a intraday database. I checked the Amibroker forum and found the following. Thank you... |
| Point & figure Chart India Securities | Mandeep Singh | 2009-01-05 16:11:16 | Level: advanced indicator (0 comments) | Details |
| _SECTION_BEGIN( \"Point & Figure w Values adj\" );
//mandeep Singh 05-Jan-2009
GfxSetBkColor(colorBlack);
GfxSetTextColor( colorOrange );
GfxSelectFont(\"Times New Roman\", 10, 700, True );
GfxTextOut(\"man4urheart.blogspot.com\", 10 , 0 );
GraphXSpace = 5;
SetChartBkColor( ParamColor( ... |
| Polarized Fractal Efficiency | jparent | 2002-02-24 22:15:45 | Level: medium indicator (0 comments) | Details |
| vbscript function to calculate PFE indicator for your array... |
| Polarized Fractal Efficiency | Jayson Casavant | 2002-11-07 01:31:31 | Level: medium indicator (0 comments) | Details |
| The January 1994 issue of Stocks & Commodities featured an article by Hans Hannula on Polarized Fractal Efficiency. Here is the custom formula for creating the five-period smoothed 10-Day PFE.
Interpretation
Drawing upon the pioneering works of mathematician Benoit Mendelbrot, Mr. Hannula deve... |
| Position Sizer vers2, stocks and CFDs | skittlebup | 2008-05-10 05:41:00 | Level: basic system,exploration (3 comments) | Details |
| This revised version corrects a serious error (reversing the first condition in the first IIF statement), and now allows input values to be varied using PARAM fields.
May be used both as an indicator and as an exploration. The exploration ADDCOLUMNS give a bit more data.... |
| Position Sizing and Risk Price Graph | Tommy Beard | 2004-11-29 02:11:39 | Level: basic system,indicator,commentary (2 comments) | Details |
| Position Sizing and Risk Price Graph
The Position Sizing Price Graph Bar allows one to automatically view how many shares should be purchased based upon a 1% Risk Management Rule while using Average True Range as a basis for stop losses. This is covered in Van Tharp's book, "Trade Your Way to Fi... |
| Position Sizing and Risk Price Graph - 2 | Tommy Beard | 2005-04-21 04:03:17 | Level: basic system,indicator (0 comments) | Details |
| This is the same as the first version except you may adjust the portfolio values and risk values with the parameter feature. The Position Sizing Price Graph Bar allows one to automatically view how many shares should be purchased based upon a 1% or 2% Risk Management Rule while using Average True Ra... |
| Positive ROC Exploration | Mubashar Virk | 2006-10-03 14:36:47 | Level: basic exploration (0 comments) | Details |
| Hi there guys and ladies, I have a Positive ROC exploration for all you tight-traders and beginners. It may give you some good picks for the next day. Needless to say you must study the securities by using William, Chaikin, and Bollinger's. Also try to put your own filtration values for ROC and Volu... |
| prakash | prakash | 2007-01-01 05:37:37 | Level: basic indicator (0 comments) | Details |
| i would like to download the all data services form us canada and ... |
| Prashanth | Prashanth | 2007-12-24 08:14:04 | Level: basic indicator (3 comments) | Details |
| Plots Candlestick Chart for Calendar Year Bar's (1st of Trading day in Year to last trading day in Year). Entirely adapted from Graham's Monthly Chart... |
| Price Persistency | Anthony Faragasso | 2002-12-29 18:20:39 | Level: basic exploration (1 comments) | Details |
| Interested in measuring a short-term Trend ?
Price persistency is the number of days that a market continues to close either up or down. It's another term for a market run. The usefulness of Price Persistency is based on the theory of runs..It is the idea that, given the market has moved in a part... |
| Price with Woodies Pivots | Larry Jameson | 2004-11-16 18:19:36 | Level: semi-advanced indicator (9 comments) | Details |
| Produces a price chart with Woodies Pivots. Only the pivots within a specified range are displayed to prevent autoscaling problems... |
| Price-Volume Rank | Tomasz Janeczko | 2001-06-16 08:29:55 | Level: basic indicator (0 comments) | Details |
| A Price Volume Rank. Buy/Sell at 5/10-day crossovers. Buy when fast line crosses below 2.5. Sell when fast line crosses above 2.5. Use turn-around points cautiously. Remember that a climbing PVR line indicates a weakening market. Make another indicator using a double-smoothing to use a less volatile... |
| Probability Calculator | Anthony Faragasso | 2001-09-08 15:45:03 | Level: semi-advanced commentary (1 comments) | Details |
| To be used in the Guru Commentary Window. Provides Support for
Options and Derivatives. By using Probability theory, you are letting
the market find the trades for you that are likely to be
consistent winners.... |
| Probability Density & Gaussian Distribution | Sean | 2009-08-24 17:37:00 | Level: advanced indicator,function (4 comments) | Details |
| Plots a custom graph of the probability distribution of the log returns independent of Amibroker\'s chart time scale. Many thanks to Adheer Pai for this cool contribution.... |
| Projection Oscillator | Hans | 2004-03-14 17:37:56 | Level: medium system,indicator (1 comments) | Details |
| Developed by Mel Widner, Ph.D., the Projection Oscillator is a by-product of his Projection Bands (see Projection Bands). The Projection Oscillator is basically a slope-adjusted Stochastic. Where the Stochastic Oscillator (see Stochastic Oscillator) shows the relationship of the current price to its... |
| Pullback System No. 1 | Jerry Coopmans | 2001-06-16 22:58:37 | Level: medium system (2 comments) | Details |
| This is a short term pullback system that in only long. It buys on the open following a higher high after two lower closes and when the close is above the 50 day simple average.
The sell is on the day after a profit at the open or stopped after breaking the two day low. ... |
| q345w3457y | sdfgsdf | 2006-07-24 19:45:33 | Level: advanced indicator (7 comments) | Details |
| tiuotydgtfhsth... |
| QP2 Float Analysis | Steve Wiser | 2001-08-12 11:06:29 | Level: basic exploration,indicator (2 comments) | Details |
| As an exploration this looks for the most recent peak
or trough and from that point calculates the amount of
volume that has traded. Taking this volume and dividing
this be the amount of float (shares available for trading
that are not held by insiders) to get a percentage of
the total float ... |
| qp2 industry charts as a panel in the stocks chart | murthy suresh | 2007-08-24 21:44:47 | Level: basic indicator (0 comments) | Details |
| qp2 industry charts as a panel in the stock charts.... |
| QStick | Lee | 2005-01-23 14:18:13 | Level: basic indicator (0 comments) | Details |
| QStick from Tushar Chande. This indicator measures intraday momentum by
using the distance between the open and close of price over "n periods".
It is set at the default ( 8 ) periods that Chande suggest. ... |
| Quotes Plus Industry Index | Dennis | 2005-09-20 16:12:16 | Level: basic function (0 comments) | Details |
| This will add the IRL Indexes to the right Industry/Sector folder.
You also need to create a formats file and save it in the AB formats folder.
You can find this file also here at the AFL Library search for: Quotes Plus Industry Index Format file... |
| Quotes Plus Industry Index Format file | Dennis | 2005-09-20 16:20:34 | Level: basic function (11 comments) | Details |
| This is the format file to import the Quotes Plus Industry Index
You have to add follwing line to the import.types file
Location:
AmiBroker\Formats\import.types
and save this file in the same folder... |
| R-Squared | Jayson Casavant | 2002-11-10 16:33:47 | Level: medium indicator,commentary (2 comments) | Details |
| R-2 attempts to measure a percentage of a stocks movement that can be attributed to Linear Regression. When used in combination with Slope you have a tool that can aid in trend detection.
To determine if the trend is statistically significant for a given x-period linear regression line, Plot the ... |
| Rainbow Charts | Anthony Faragasso | 2001-08-13 21:47:59 | Level: basic indicator (0 comments) | Details |
| Produce colorful Charts with 10 moving averages.... |
| Rainbow Oscillator | Anthony Faragasso | 2001-08-13 21:42:30 | Level: medium indicator (0 comments) | Details |
| Very Good Visual with colored bars .
Imediately Identify Underlying Trend Of the Market.
... |
| Random Walk | Mich | 2006-12-07 21:29:27 | Level: basic exploration,indicator,commentary,function (0 comments) | Details |
| Random Walk generator :
- RW with drift or without drift
- choose starting value
- choose variance
- fix random number serie if you want
Can be plotted for RW vs Price watching comparaison.
Intraday Price seems to follow a Random Walk if you cut the EOD gap... ... |
| Random Walk Index | Bman | 2007-10-11 00:32:30 | Level: medium indicator (2 comments) | Details |
| This is the random walk index with some smoothing. ... |
| Random Walk Index, base formula included | Bman | 2008-08-26 14:26:33 | Level: medium indicator (6 comments) | Details |
| Random Walk Index, base formula included. Crossovers signal buys and sells.... |
| Randomize() | Antonio Marra | 2004-07-20 06:40:47 | Level: basic showemail,function (0 comments) | Details |
| This function will generate random numbers included in a given numeric interval.... |
| Range Expansion Index | Tomasz Janeczko | 2001-06-16 08:32:31 | Level: medium indicator (0 comments) | Details |
| The DeMark Range Expansion Index is a market-timing oscillator described in DeMark on Day Trading Options, by T.R. DeMark and T.R. Demark, Jr., McGraw Hill, 1999. The oscillator is arithmetically calculated and is designed to overcome problems with exponentially calculated oscillators, like MACD. Th... |
| rank function | walt schwarz | 2003-05-26 17:15:01 | Level: medium showemail,function (0 comments) | Details |
| will return the percent ranking of an item within a sorted array. (see "sort" function)... |
| Ranking and sorting stocks | Herman van en Bergen | 2005-03-01 06:33:36 | Level: semi-advanced function (11 comments) | Details |
| A function to rank stocks according to your scoring formula. The top-tickers can be listed on a chart for demo or the tickers/scores strings can be read by your code for other use. Slow on large watchlists!
... |
| Ranking Ticker WatchList | nenapacwanfr | 2004-12-05 13:54:05 | Level: basic indicator (1 comments) | Details |
| /*
returns the Rank of a ticker in a WL for a given indicator
if the ticker is outside the WL the rank is empty
UNFORTUNATELY if the WL contains many tickers the formula is slowwwwww
*/... |
| Rapid Prototyping Method for System Development | mmike | 2008-08-01 12:44:11 | Level: medium system (1 comments) | Details |
| Hi,
here is a pretty tricky approach to use optimizer for trading system development. Description in the Breakout Bulletin Newsletter March 2005 by Mike Bryant - http://www.breakoutfutures.com/Newsletters/Newsletter0305.htm
Be careful the script takes 3^7=2187 optimization steps! But amibroker i... |
| Raw ADX | Prakash Shenoi | 2006-09-19 08:18:17 | Level: basic indicator (2 comments) | Details |
| This ADX formula uses input variable for the periods and
uses Wilders and ATR in its calculation.... |
| Rea Time Daily Price Levels | Ara Kaloustian | 2005-10-10 01:40:26 | Level: medium indicator (4 comments) | Details |
| This program computes and plots prices levels fir real time data, for following parameters: Toda's Open, Prior Day Open, Clode, High, Low, First hour High, Low.
... |
| Regression Analysis Line | Frank Snay | 2001-09-03 15:36:58 | Level: basic indicator (1 comments) | Details |
| Graphical Display of Regression Analysis Line. User can set the length of the RA line, the percent above and below said RA line for parallel lines, and a "DaysBack" user described variable for historical study and display of the RA line.... |
| Relative Momentum Index (RMI) | Prakash Shenoi | 2008-08-10 12:57:44 | Level: basic exploration,indicator (0 comments) | Details |
| Relative Momentum Index is a “normalized” momentum oscillator similar to RSI and ranges between 0 and 100. It is intended to help determine the strength of price trends and also to highlight potential short-term market overbought and oversold levels. When the markets are in strong trend,... |
| Relative Strength | Brian Mitchell | 2004-01-17 00:59:58 | Level: advanced exploration (1 comments) | Details |
| Comparative relative strength scoring/ranking. I use this to compare sectors in tc2000, but it could be used for just about anything. Point it at a watchlist (make sure to set watchlistnum variable appropriately) and it will rank everything in the watchlist relative to one another.... |
| Relative strength comparison with moving average | Don McKay | 2004-01-15 09:30:50 | Level: basic indicator (3 comments) | Details |
| Compare current stock against another with a moving average.
... |
| Relative Strength Index | Tomasz Janeczko | 2001-06-16 08:50:34 | Level: medium system,commentary (1 comments) | Details |
| Sample commentary using RSI showing how to use WriteIF() and WriteVal() functions.
May be also used as a simple trading system.... |
| Relative Strength Multichart of up to 10 tickers | Frederick M Miller | 2004-02-09 23:46:38 | Level: medium indicator (0 comments) | Details |
| A modified indicator to function like the FastTrack total return charts normalizing up to 10 tickers for relative strength comparison. This indicator supports the date pole and date markers.
Tickers are loaded using Parameters or [CNTRL]R
Colors are selected for a black screen, but are easily ... |
| Relative Vigour Index | Stefan Bondorowicz | 2002-01-18 11:17:19 | Level: basic indicator (0 comments) | Details |
| Relative Vigour Index described in an article by John Ehlers
in the January 2002 edition of TASC.... |
| Rene Rijnaars | Rene Rijnaars | 2008-05-26 11:18:17 | Level: semi-advanced exploration (1 comments) | Details |
| I like to be able to make a exploration of the outcome of this formula. Anybody knows how to do this?... |
| Renko Chart | Graham Kavanagh | 2005-07-21 02:18:53 | Level: advanced indicator (44 comments) | Details |
| Plot renko chart. Error in plotting will occur if the box and/or reversal values are too small causing the number of renko bars exceeding the underlying stock normal price bars... |
| Reverse EMA function | Dimitris Tsokakis | 2003-06-13 03:44:35 | Level: basic indicator (3 comments) | Details |
| EMA is a function of todays Close and yesterdays EMA.
The mechanism is analytically described in AFL>AFL Scripting Host>Examples>a) Indicator example - Exponential moving average
After the math transormation, we may solve for C and get the Reverse EMA function.
I will call it CLOSEviaEMA to be mo... |
| RI - Auto Trading System | Lalit Burhade | 2009-06-25 07:41:55 | Level: advanced system (1 comments) | Details |
| Check this auto-trading system developed using SAR. Most useful in trnding market. Optimised for 1 hour time frame but works with any time frame in trending market. Also generates sound alerts alongwith Buy / Sell (arrow) signals. Try this out & any suggestions/ comments most welcome.... |
| Robert Antony | Robert Antony | 2008-12-29 06:26:36 | Level: medium system,exploration,indicator,commentary (0 comments) | Details |
| Trader... |
| ROC of MACD Weekly | Frank Snay | 2002-04-04 15:46:25 | Level: basic indicator (1 comments) | Details |
| Using the Weekly icon on the side toolbar, this indicator will give a visual presentation of the trend of a stock. The title will also give values and a text description of the trend... |
| RSI + Avgs | TohMz | 2008-05-25 18:57:17 | Level: basic indicator (3 comments) | Details |
| Again Based on the book "Technical Analysis for the Trading Professional by Author: Constance Brown
Translate from the Trade Station Formala in the Appendix D
... |
| RSI Double-Bottom | Jim Varney | 2002-09-08 13:36:15 | Level: basic system (3 comments) | Details |
| Rising double bottom in RSI is a fairly reliable buy
signal (given a reasonably healthy market). Using a backtest database of 50 stocks (137,500 bars) diversified across
industries, beta, net return, and capitalization, the backtest gives the following results:
Percent profitable: 77.0%
Ratio ... |
| RSI indicator with Upper & Lower Zone Bars | TohMz | 2008-05-23 21:51:31 | Level: medium indicator (5 comments) | Details |
| Based on the book "Technical Analysis for the Trading Professional
Author: Constance Brown
"... The mainstream believes that the oscillators generally travel between a scale of 0 to 100. Generally 20(or 30) and below is viewed as oversold, and 80 (Or 70)
and above is viewed as ove... |
| RSI of volume weighted moving average | Jim Wiehe | 2006-07-21 06:38:21 | Level: basic indicator (0 comments) | Details |
| This afl uses the RSIa function upon a volume weighted moving average. There are parameters to adjust the RSIa periods, VWMA periods and an additional ema smoothing period. I think Bollinger liked the 9 period RSI and a couple of double bottoms below 30.... |
| RSI of Weekly Price Array | Anthony Faragasso | 2002-09-21 20:27:56 | Level: medium indicator (1 comments) | Details |
| Plot the RSI of Weekly Price Arrays,Enter ( t ) variable in
Multiples of 5 for weekly.... |
| RSI Pointer | Duke Duncan | 2002-01-20 13:50:21 | Level: semi-advanced indicator (0 comments) | Details |
| This is a nice indicator. It combines moving averages, Stochastic D, and RSI. It is inverted and a single peak into the 30/70 range indicates buy or sell. It leads the market and is easy to manipulate. An easy way to alter it for different time frames is just to change the "Period" variable.... |
| RSI styleClipMinMax | Geoff Lamb | 2007-08-16 09:59:18 | Level: basic indicator (1 comments) | Details |
| Plots RSI using styleClipMinMax to get graph above and below values coloured in.... |
| RSI Trendlines and Wedges | Dimitris Tsokakis | 2003-06-16 06:29:06 | Level: medium exploration,indicator (2 comments) | Details |
| The formula plots recent [or previous] RSI trendlines in Indicator Builder mode.
In Automatic Analysis mode, explore for the n=1 last quotations for Ascending or Descending Wedges and the respective probable bearish or bullish breakouts.
It may be combined with OHLC trendlines [http://www.amibroke... |
| RSIS | Thomas Zmuck | 2002-01-29 06:47:03 | Level: medium system,indicator (4 comments) | Details |
| Overbought/Oversold Indicator, same as normaly RSI, but with special moving and low whipsaws.
scale goes from ~ -20 to ~110, this could be changed by your adjustment.
buy methods as every other overbought/oversold Indicator.
I've added my buy method, which gives sometimes very good signals, but i... |
| RUTVOL timing signal with BB Scoring routine | Gary Serkhoshian | 2003-11-18 15:05:44 | Level: semi-advanced system (6 comments) | Details |
| RUVOL signal was developed by Werner Gansz who was kind enough to share it with the FT-Talk community. RUTVOL is an intermediate-term signal, and in this code example it is coupled with a Bollinger Band scoring routine as a selection methodology for stocks.... |
| Sainath Sidgiddi | Sainath | 2004-11-07 06:32:34 | Level: basic exploration,indicator (0 comments) | Details |
| SNiper trading emphasizes on day of week trading, rather than trading every day.Good stuff for those int in day trading and taking positions.... |
| SAR-ForNextBarStop | Rick Charon | 2005-12-14 19:59:23 | Level: semi-advanced indicator (8 comments) | Details |
| I want to use SAR indicator to calculate the stop to set for the next trading day after
the close of today. Because there is as yet no bar for next day, the built in SAR
indicator can't be used this way. I'm only using this for long positions, and just to set
the next day's stop. Most of this is ... |
| Scale Out: Futures | Pete | 2009-02-08 21:55:22 | Level: semi-advanced system (1 comments) | Details |
| The sole purpose of this code is to back test different trading strategy\'s that incorporate a scale out technique. This code can also be used to optimize system entries and exits utilizing a scale out strategy as long as the system has optimizable parameters.
If you have any questions or ideas for... |
| Scan New High and New Low | TohMz | 2008-06-15 11:47:31 | Level: basic exploration (3 comments) | Details |
| Scan OR exploration which can find any futures OR stock that has reached Break New High AND New Low :
User choose on "Scan by Day/Week/Month" option.
1. User input if scan by Day
2. User input if scan by Week (Default)
3. User input if scan by Month
Created by TohMZ on June... |
| Schiff Lines | Bob Johnson | 2006-09-14 21:53:50 | Level: semi-advanced indicator (6 comments) | Details |
| Variation on Andrew's Pitchfork. Uses the midpoint between the left 2 peak/trough points instead of the leftmost peak/trough to determine the slope of the lines.
... |
| Second-order Infinite impulse response filter | Tomasz Janeczko | 2003-04-30 15:43:03 | Level: semi-advanced indicator,function (2 comments) | Details |
| This code demonstrates new looping and user-definable functions.... |
| Sector Tracking | Ara Kaloustian | 2002-04-07 14:40:40 | Level: medium indicator (1 comments) | Details |
| Tracks normalized relative performance of the most heavily traded sectors 4 sectors (XLE, XLK, XLB, XLF).
Performance is tracked by comparing the daily performance of the sector to the daily performance of the S&P500, then a 13 day exp moving average and finally the sum of 9 days to smooth out th... |
| SectorRSI | goldfreaz | 2002-05-04 14:45:07 | Level: semi-advanced system (1 comments) | Details |
| Scan looks for stocks that have low RSI but turning up. Also, checks for composite to be in agreement. Run in the scan mode to establish composite. Then run in the backtest mode to find the winners. Paste all the winner from the results into their own separate group. Repeat the above on this el... |
| SF Entry,Stop, PT Indicator | Stefan-Georg Fuchs | 2001-10-13 08:59:11 | Level: basic indicator (0 comments) | Details |
| //For use with STO MACD Buy signals with Moneymanagement
maxgraph = 5;
graph0 = close;
graph0style=64;
graph0color=2;
graph1 = ema(CLOSE,5)-(ema(ATR(1),10)*1.50);
graph2 = ema(close,5)+(ema(ATR(1),10)*2.5);
graph2style = 1;
graph2color=3;
graph3 = ema(CLOSE,5)+(ema(ATR(1),10)/4);
graph3s... |
| shailu lunia | shailu lunia | 2009-06-05 14:39:34 | Level: basic indicator (2 comments) | Details |
| daytrader.... |
| Shares To Buy Price Graph | Tommy Beard | 2004-12-02 17:08:43 | Level: basic system,indicator (2 comments) | Details |
| The Shares to Buy Price Graph allows one to automatically see the number of shares that can be purchased based on the current price when the amount of money to be invested is already known. This is useful when using Dollar Weighted Positions such as investing 2000 Dollars in each position. It elimin... |
| Simple Candle Exploration | Herman van den Bergen | 2005-01-28 17:33:59 | Level: medium exploration (2 comments) | Details |
| Exploration to find and list Candle patterns. Requires CandleFunctionsInclude.afl (in this library) to be in your include folder. Modify to suit your needs.... |
| Simple Momentum | Alex Fler | 2005-08-06 22:46:26 | Level: basic indicator (0 comments) | Details |
| The momentum of a security is the ratio of today's price compared to the price x-time periods ago. Similar to what you'll find in Metastock ,Trade Station 2000i or Advanced Get
... |
| Sine Wave Indicator | Sony Chauhan | 2007-11-04 23:52:46 | Level: basic system,indicator (2 comments) | Details |
| Sine Wave Indicator:
I got this going, based on other people's work and the dominant cycle code already on the site, it took me a while, but I think it looks correct now.
I am not sure why DTR and RTD are used, but someone had a piece of code on this which I copied and then it finally started ... |
| SIROC Momentum | Geoff Mulhall | 2001-06-25 05:07:39 | Level: semi-advanced indicator (0 comments) | Details |
| /* Elders SIROC Indicator */
/* Set Scaling to Automatic, Show dates On, Percent On, Middle On */
graph0 = roc(ema(c,13),21);
graph0style = 1;
graph0color = 9;
... |
| Sony | Sony Chauhan | 2008-11-14 19:16:58 | Level: advanced indicator (2 comments) | Details |
| Ehlers Adaptive Stochatic Indicator Cyber Cycle. Modified from original cyber cycle indicator code according to Ehlers book.... |
| sort function | walt schwarz | 2003-05-26 17:11:16 | Level: medium showemail,function (0 comments) | Details |
| will return the passed array in sorted order... |
| Square of Nine Roadmap Charts | Lal | 2008-03-30 14:19:07 | Level: semi-advanced indicator (15 comments) | Details |
| Produces automatic trend channels based on a SINGLE bar.... |
| Standard Error Bands | jparent | 2002-02-24 22:14:38 | Level: medium indicator (0 comments) | Details |
| vbscript functions to calculate band top and bottom of your array... |
| Standard Error Bands (Native AFL) | William Peters | 2003-12-20 19:04:15 | Level: medium indicator (1 comments) | Details |
| Description:
Standard Error Bands are a type of envelope developed by Jon Andersen. They are similar to Bollinger Bands in appearance, but they are calculated and interpreted quite differently. Where Bollinger Bands are plotted at standard deviation levels above and below a moving average, Standa... |
| STARC Bands | Prakash Shenoi | 2006-08-11 07:18:13 | Level: basic indicator (0 comments) | Details |
| STARC Bands developed by Manning Stoller consist of a channel surrounding a Simple Moving Average of typical Price. The width of the channel created vary with the period of the average range. Like Bollinger Bands, STARC Bands tighten in steady or low volatility markets and widen as volatility goes u... |
| STD_STK Multi | Willem Jan | 2002-02-24 03:34:07 | Level: medium system,exploration,indicator (0 comments) | Details |
| Based on Stochastics this formula delivers quite promising, reliable and consistent results in terms of net profit. Compared with the STD_STK Single this formula will take care of a group of selected tickers/shares. For optimisation my setting are range 120 days.
For testing etc. my settings are: ... |
| Steve Woods' Cum. Vol. Float + Cum. Vol. Channels | Eric Tangen | 2002-07-12 08:51:23 | Level: advanced indicator (1 comments) | Details |
| This file contains two of Steve Woods' indicators: his Cumulative-Volume 'Float' indicator and his Cumulative-Volume 'Channel' indicator.
The Cumulative-Volume 'Float' indicator is a channel of the high/close and lowest low/close during a period of time where the cumulative volume of shares trad... |
| Steve Woods' Cumulative Vol. Percentage Indicator | Eric Tangen | 2002-07-12 08:47:28 | Level: medium indicator (1 comments) | Details |
| This is the third of Steve Woods' indicators - his Cumulative Volume 'Percentage' indicator. It is a sawtooth histogram of volume summation normalized to a fraction of one float. When the fraction becomes one float, the summation is reset - hence the sawtooth appearance.
The theory is that signifi... |
| Steve Woods' Float Channel Lines | Eric Tangen | 2001-12-28 15:47:58 | Level: medium indicator (0 comments) | Details |
| Channel lines define the highest high/close and lowest low/close during a period of time where the cumulative volume of shares traded equaled the float.
Implemented entirely in vbScript...is there an easier way to code this using AFL?... |
| STO & MACD Buy Signals with Money-Management | Stefan-Georg Fuchs | 2001-10-13 08:55:29 | Level: semi-advanced exploration (4 comments) | Details |
| // This exploration looks for simple Stochastics and MACD buy signals
// to inialize long trades.
// Money-, Risk and Positionmanagment is more important for
// successful trading than having only good entries and exits.
// Therefore, I combined these signals with strict trade-,
// money-manage... |
| Stochastic %J - KDJ | Barry Scarborough | 2008-09-20 11:24:23 | Level: basic indicator (0 comments) | Details |
| The KDJ indicator is a form of the Stochastic. The difference is an extra line called the %J line. The %J line is the divergence of the %D value from the %K. The value of %J can go beyond 0 or 100 for %K and %D lines on the chart.
Trading Signals: A negative value of %J with %K and %D at the bot... |
| Stochastic Divergence, negative | Dimitris Tsokakis | 2001-07-04 04:30:59 | Level: semi-advanced indicator (0 comments) | Details |
| A negative Stochastic divergence occurs when the tangent of Stochastic oscillator's graph is descending, whereas the tangent of price's graph is ascending for the same time interval .
The occurrence of a negative stochastic divergence in overbought area, usually signals a trend reversal,
especiall... |
| Stochastic Divergence, positive | Dimitris Tsokakis | 2001-07-04 03:55:54 | Level: semi-advanced indicator (1 comments) | Details |
| A positive stochastic divergence occurs when the tangent of Stochastic oscillator's graph is ascending, whereas the tangent of price's graph is descending for the same time interval .
The occurrence of a positive stochastic divergence in oversold area, usually signals a trend reversal,
especially ... |
| Stochastic Divergences, PDI, NDI | Dimitris Tsokakis | 2002-03-25 04:12:25 | Level: advanced indicator (1 comments) | Details |
| Definitions.
1. Positive Stochastic Divergence Issues (PDI) is the population of stocks that
presented a positive stochastic divergence, calculated on daily basis.
2. Negative Stochastic Divergence Issues (NDI) is the population of stocks that
presented a negative stochastic divergence, calc... |
| Stochastic Fast%K and Full | Brian | 2002-09-06 18:12:51 | Level: basic system,indicator (7 comments) | Details |
| Originally Developed by George C. Lane... |
| Stochastic OBV and Price Filter | Frank Snay | 2001-06-24 19:25:04 | Level: basic exploration (1 comments) | Details |
| /*
Stochastic OBV and Price Filter - No graphing included.
User Set Stochastic OBV and Stochastic Price periods
Recommended Use - "Explore", Apply to "all stocks", Range, n last days n = 0
StochasticOBV is the stochastic of OBV for the user set periods
StochasticPrice is stochk() for user set p... |
| Stochastic of Weekly Price Array | Anthony Faragasso | 2002-09-21 20:03:31 | Level: medium indicator (3 comments) | Details |
| Plot the Stochastic of Weekly Price array , while staying in
Daily mode.... |
| Stochastic optimize | Grayesso | 2003-12-10 14:10:41 | Level: advanced showemail,function (0 comments) | Details |
| Optimize for Stochastic (8,3,3 - 14,5,5 == by DiNapoli - by default for Amibroker)... |
| Stochastic OSI & OBI | Dimitris Tsokakis | 2002-03-24 14:28:53 | Level: advanced indicator (1 comments) | Details |
| An example Of Overbought Issues (OBI) and Oversold Issues(OSI), based on Stochastic(14), smoothed, complementary to RSIobi and RSIosi.
... |
| Stochastics Trendlines | Dimitris Tsokakis | 2001-08-27 11:43:42 | Level: basic indicator (0 comments) | Details |
| Slow Stochastic (14) with cross information on the title and its recent trendlines. ... |
| StochD_StochK Single.afl | Willem Jan | 2002-02-24 02:13:08 | Level: medium system,exploration,indicator (4 comments) | Details |
| Based on Stochastics this formula delivers quite promising, reliable and consistent results in terms of net profit. For optimisation my setting are range 120 days.
For testing etc. my settings are: commission 0.5%, long only (althouhg long short can be used withour problems), buy and sell on openin... |
| Stock price AlertIf | Anthony van Rooyen | 2004-07-28 12:39:53 | Level: basic exploration (6 comments) | Details |
| If you want to be alerted to a stock reaching a certain price in "Alert Output" under "view" in Amibroker.
Simply add the stock code, were the XYZ is.
To set the price simply add it where $$$ is.
Cut and past if you have lots of stocks that you want to be alerted to.
Then just run the scan.
... |
| Stop-loss Indicator bands | Prakash Shenoi | 2008-06-22 11:01:53 | Level: basic indicator (2 comments) | Details |
| Simple stop-loss bands calculated by ATR periods (Variable) with highest high and lowest Low value over (variable) the preceding periods. Stop loss level for short positions deduced from highest high value periods and Stop Loss for longs fm Lowest low value periods. ... |
| Stops Implementation in AFS | Marek Chlopek | 2001-11-29 16:03:15 | Level: medium system,exploration (1 comments) | Details |
| Please find attached afl script with stops implementation directly as a
afl code without using ApplyStop formula. This implementation gives
possibility to get arrows on the chart.
Also please note this stops have been split into two parts - for long
and short trades.
Also activation level is de... |
| Stops on percentages | Chris | 2008-09-07 07:28:24 | Level: basic indicator (0 comments) | Details |
| Stops on percentages can be set to low,high,close and open on the bars for long and short stops.... |
| Strength and Weakness | Eric Paradis | 2006-02-14 00:57:08 | Level: basic exploration (6 comments) | Details |
| Measures the strength in a stock over a 20 day period, generates a 20-day rate of change and a yearly rate of change.
... |
| Sun&Cloud | Chih-chiang Chen | 2001-10-26 11:39:51 | Level: advanced indicator (7 comments) | Details |
| Modification of Ichimoku Chart
For Long term investors and short term traders.... |
| SUPER PIVOT POINTS | Avi ben a | 2006-11-09 14:15:19 | Level: basic indicator (10 comments) | Details |
| hi all
SUPER PIVOT POINTS can by used in 2 ways:
if you choose daily, the pivots are calculated from the previous day,
this can be used for daily charts.
the second option is next day for EOD charts.
for all the options available right click on the chart parameters.
to utilize all the program ... |
| Support and Resistance | Prakash Shenoi | 2006-09-19 11:06:24 | Level: basic indicator (0 comments) | Details |
| Simple support and resistance indicator with lookback variable input.... |
| Support Resistance levels | Graham Kavanagh | 2003-05-22 22:25:51 | Level: medium indicator (13 comments) | Details |
| Indicator to show support and resistance levels based on RSI indicator reversals... |
| suresh | murthy suresh | 2008-08-06 21:20:26 | Level: advanced indicator (0 comments) | Details |
| i always wanted to plot my trades against a chart and see how it performed. now i did it.
it takes the trade info as a set of static values and plots it. included in code is defaulted sbux
StaticVarSetText( "TradeType" , "Stocks" ); //Stocks|Forex
StaticVarSetText( "forexSymbol" , "SBUX" ); //... |
| SWIM INDEX | Kailash K Pareek ( Johnny ) | 2001-10-11 09:31:20 | Level: semi-advanced indicator (2 comments) | Details |
| SWIM INDEX coded by KAILASH K PAREEK - INDIA .
As the name of indicator explains it self, It measures the
swim of Price. Day Trader may find it very useful as it gives
trend reversal in next 2-3 trading.
INTERPATION:
Expect trend reversal or at least consolidation when SI
Spikes higher... |
| swing chart | RAVIKANT RAUT | 2007-07-08 11:59:44 | Level: medium exploration,indicator (12 comments) | Details |
| provide you a marvellous trading point... |
| T3 | dale Butkowski | 2001-08-05 09:47:23 | Level: basic system (1 comments) | Details |
| Trading system based on cubing of function (1+a)-ax^2 where a is the amplification ( 0 < a < 1.0, I use 0.7) and en is the exponentially smoothed average of the closing price.... |
| T3 Function | Jayson Casavant | 2004-03-03 20:07:15 | Level: semi-advanced showemail,function (8 comments) | Details |
| In filter theory parlance, T3 is a six-pole non-linear Kalman filter. Kalman filters are ones which use the error (in this case (time series - EMA(n)) to correct themselves. In Technical Analysis, these are called Adaptive Moving Averages; they track the time series more aggressively when it is maki... |
| TAZ Trading Method Exploration | Tommy Beard | 2006-11-05 17:54:24 | Level: basic exploration (3 comments) | Details |
| Explore and find stocks meeting the criteria for the TAZ Swing Trading Method which is explained at http://www.swing-trade-stocks.com... |
| TD Channel-1 | milostea | 2009-02-28 16:53:42 | Level: basic indicator (0 comments) | Details |
| TD channel type I.... |
| TD Channel-2 | milostea | 2009-02-28 16:54:15 | Level: basic indicator (0 comments) | Details |
| TD channel type 2... |
| TD Moving Average 2 | milostea | 2009-02-28 16:57:05 | Level: basic indicator (1 comments) | Details |
| TD\'s moving average type 2... |
| TD Moving Average I | milostea | 2009-03-03 14:54:58 | Level: basic indicator (0 comments) | Details |
| TD\'s moving average I... |
| TD REI | milostea | 2009-02-28 16:55:31 | Level: basic indicator (1 comments) | Details |
| TD range expansion index (REI). Indicator was posted by another user. I have modified it to follow TD\'s rules. See my comments in the code for further info..... |
| TD sequential | s.carrasset | 2004-11-02 04:57:37 | Level: basic system (11 comments) | Details |
| Td sequential... |
| TD Sequential | AbdulKareem | 2007-10-25 07:30:19 | Level: semi-advanced system (6 comments) | Details |
| TD Sequential.
TD Points.
TD Setup Trends.... |
| testing multiple system simulataneously | Paul Ho | 2009-05-13 07:53:58 | Level: medium system (0 comments) | Details |
| testing multiple system simulataneously... |
| Textpad Editor codes for AFL syntax (Revised)... | dingo | 2004-02-09 23:50:08 | Level: basic system,exploration,indicator,commentary,function (1 comments) | Details |
| Textpad Editor codes for AFL syntax (Revised)...... |
| The D_oscillator | Dimitris Tsokakis | 2003-06-30 04:12:16 | Level: medium system,indicator (1 comments) | Details |
| The body of a candle C-O is divided by H+L to create a body to size ratio. To avoid any noise apply repetitive DEMA smoothing. Finally apply the RSI transformation to create the D_oscillator. The ^NDX OHLC data are used to produce Buy/Sell signals with interesting results for US stocks and the main... |
| The Fibonaccian behavior | Dimitris Tsokakis | 2006-11-27 05:56:47 | Level: medium indicator (9 comments) | Details |
| This code will easily check the history of the Fibonaccian behavior of a stock/index.
If the white line falls "near" the blue Fibonacci levels, then this behavior may be repeated in the future.
For n0=2 we will have the main Fibonacci sequence
0.381, 0.618, 1, 1.618, 2.618
For n0=3 we will have ... |
| The Mean RSIt | Dimitris Tsokakis | 2002-03-17 14:34:12 | Level: advanced indicator (5 comments) | Details |
The RSIt Indicator, defined from
Var=MACD();
Up=IIf(Var>Ref(Var,-1),abs(Var-Ref(Var,-1)),0);
Dn=IIf(Var |
| The Mean RSIt (variations) | Dimitris Tsokakis | 2002-03-14 07:36:32 | Level: advanced indicator (0 comments) | Details |
| Variations of the Mean RSIt used in trading systems design.
Paste the formula in Automatic Analysis window, select All stocks (or a sector or a group or a watch list), all quotations and scan.
Select View->Refresh All and then Save.
Data should be clean and without missing dates (holes).
To ... |
| The Relative Slope | Dimitris Tsokakis | 2001-07-02 11:46:37 | Level: basic indicator (9 comments) | Details |
| Definition: For a variable X, the difference of two cascade values of X,
devided by their sum.
For scaling purposes,this quotient may be multiplied by a numerical coefficient.
Example:
The Relative Slope of exponential moving average of "typical price"
A variable independent of specific stock v... |
| The Relative Slope Pivots | Dimitris Tsokakis | 2002-03-25 04:30:18 | Level: advanced indicator (1 comments) | Details |
| Definitions:
"RS up pivot" (RSUP) is the population of stocks presenting a bearish turning point (bearish pivot)
over a certain (positive) level of their Relative Slope value.
"RS down pivot" (RSDP) is the population of stocks presenting a bullish turning point (bullish pivot)
below a certai... |
| The Saturation Indicator D_sat | Dimitris Tsokakis | 2002-12-01 14:38:17 | Level: medium indicator (4 comments) | Details |
| There are some discrete phases for a bullish trend. The beginning is usually sharp, the market changes direction quickly,
Short positions are covered with rush, Long entries may be obliged to follow gap ups etc.
The rate of change is becoming slower, premature profit taking appears as long as new... |
| The Stochastic CCI | Dimitris Tsokakis | 2002-08-11 04:09:59 | Level: basic indicator (3 comments) | Details |
| The Stochastic CCI was defined and presented at
http://groups.yahoo.com/group/amibroker/message/2394.
For more details you may take a look at
http://groups.yahoo.com/group/amibroker/message/21618
and an excellent work by Herman van den Bergen, available at
http://www.amibroker.com/support.html... |
| The Three Day Reversal | Prashanth | 2005-08-30 23:42:41 | Level: basic system (2 comments) | Details |
| The three day reversal is a very simple pattern. When the trend is Up or Long – The Three Day Drop and When the trend is Down or Short – The 3 Day Rise.... |
| Three Day Balance Point | Lal | 2007-09-29 07:36:45 | Level: basic exploration,indicator (8 comments) | Details |
| Finds the mid-point of a three-day price range and determines bullishness/bearishness... |
| Three Line Break - TLB | Laurent | 2005-08-18 16:18:00 | Level: medium indicator (17 comments) | Details |
| same family as Kagi and Renko.
... |
| Time Frame Weekly Bars | Anthony Faragasso | 2002-09-21 19:57:33 | Level: medium indicator (1 comments) | Details |
| WEEKLY PRICE ARRAY : The close is the close of the last day of the week:
(WeeklyClose) The open is the open of the first day of the week: (WeeklyOpen) The high is
the highest high of the week : (WeeklyHigh) The low is the lowest low of the week :
(WeeklyLow ) The volume is the sum of the volume f... |
| Time Left in Bar | Ara Kaloustian | 2005-09-23 20:55:32 | Level: medium indicator (1 comments) | Details |
| This code computes the amount of time left in a bar. To display you need to include "TimeLeft" variable in your chart title.
Code is designed for eSignal or similar data feed. Data feed uses exchange timestamp and must be synchronized with PC clock. See eSignal data manager for synchronizing opti... |
| Time Left to Current Bar | Jiri Cipr | 2007-05-06 03:03:51 | Level: basic commentary (1 comments) | Details |
| Time Left to Current Bar... |
| Time segment value | ntk98 | 2004-05-22 17:34:18 | Level: basic indicator (8 comments) | Details |
| TJ has helped me translate the metastock formula of TSV(Time segment value) into AB language.
I thought I should share this formulas with other. This indicator uses volume and price, like OBV, but seems to be more reliable indicator then OBV.
In courtesy of The Wordens brothers I like to post ... |
| Tom DeMark Trend Lines | S M Jones | 2006-03-12 21:08:20 | Level: basic indicator (8 comments) | Details |
| Just include this code in your chart that has your HLOC graph and adjust the percent field and it will draw TD Trend Lines, in any time frame.
I started with the example code I found in the help section for "LineArray".... |
| tomy_frenchy | tomy_frenchy | 2006-11-07 22:00:53 | Level: semi-advanced indicator,function (0 comments) | Details |
| Prediction AR (Auto-regressive)
- With Least Square / Durbin-Levinson / Gaussian Elimination
- Autocorrelation function estimator biased and not biased
- Denoising by centered T3 moving average
- Detrending by derivation
TO DO:
- some problem of stability
- check optimum order for AR
- che... |
| Trade day of month | Paul Moore | 2009-11-04 13:16:00 | Level: basic function (0 comments) | Details |
| I needed this for one of my backtests. I couldn\'t find this anywhere else, and I thought it might be useful to others here.
This one-line AFL simply returns the trade day of the month. For example, if the month days/dates are Wed=1st, Thu=2nd, Fri=3rd, Mon=6th, Tue=7th, Wed=8th, etc, then Tue co... |
| Trading ATR 10-1 | Marcelin | 2005-03-04 15:40:51 | Level: basic system (6 comments) | Details |
| A volatility trading system.... |
| Trailing Stop Loss | marcus | 2009-09-20 05:22:08 | Level: basic indicator (2 comments) | Details |
| The problem with the previous code for the trailing stop loss in my opinion was that the exit did not happen directly at the exit arrow. This codes solves this problem. Just drag the formula into the chart and you are all set :-) ... |
| Trend Analysis_Comentary | indecent | 2006-11-30 13:09:22 | Level: semi-advanced system,commentary (18 comments) | Details |
| This Expert Advisor uses trend following indicators to show buy and sell signals. A 200-period exponential moving average of the close determines the current long term trend. Signals are only generated if they agree with the long term trend. An additional filter is used for the short to intermedi... |
| Trend Continuation Factor | Dale butkowski | 2002-02-24 11:18:35 | Level: basic system (1 comments) | Details |
| System to identify trend and its direction.... |
| Trend Detection | Graham Kavanagh | 2005-01-10 18:55:44 | Level: medium indicator (15 comments) | Details |
| Plots coloured bars for direction of current trend, green for rising, red for falling. Exploration included to find first bar of new direction.
Param included to vary the number of periods for detecting small to long term trends.
I am using beta version 4.66.2, but believe this will work with last... |
| Trend exploration with multiple timeframes | Marcus Davidsson | 2006-09-30 20:31:21 | Level: medium exploration (9 comments) | Details |
| I started experimenting with Tradestations Radarscreen
when it struck me that Amibroker have the same function "Exploration" but 100000$ much cheaper.
The formula is quite simple just load it in to Amibroker
and go to automatic analysis and push explore.
The formula will scan multiple movi... |
| Trend Exploration: Count Number of New Highs | marcus | 2009-07-25 11:46:46 | Level: basic exploration (0 comments) | Details |
|
This exploration identify price trends by counting the number of new highs (or lows) that a stock has made during the last 50 days and sort the result in descending order. ... |
| Trend Exploration: Slope Moving Average | marcus | 2009-09-20 06:38:06 | Level: basic exploration (0 comments) | Details |
| This exploration uses a lot of color and the slope of a moving averages to rank and filter out securities in the exploration window. ... |
| Trend Following System | marcus | 2009-09-20 05:58:13 | Level: basic system (4 comments) | Details |
| This is a simple long only trend following system. Just load it into the \"Automatic Analysis\" window and push \"Scan\", \"Back test\" and \"Report\" to view the result.... |
| Trend Trigger Factor | Kelly Griffiths | 2004-11-10 01:35:58 | Level: basic system,indicator,function (4 comments) | Details |
| Allows you to follow the trend.... |
| TRENDAdvisor | taishunszeto | 2008-09-21 02:23:25 | Level: basic indicator (0 comments) | Details |
| Know which stage of market you are currently in. 1) Recovery 2) Accumulation 3) Bullish 4) Warning 5) Distribution 6)Bearish
... |
| Trending or Trading ? | Dimitris Tsokakis | 2002-03-24 14:15:51 | Level: advanced indicator (4 comments) | Details |
| We have here a simple tool, useful to detect if the Market is trending (bullish or bearish) or trading (moving sideways), based on macd and its signal. Values of "bull" above 70, signal the beginning of a bullish period for the Market as a whole. Values between 30 and 70 indicate a trading period (c... |
| Trending Ribbon | Jim Wiehe | 2006-07-17 06:22:25 | Level: basic indicator (7 comments) | Details |
| This uses the nifty ribbon function in Amibroker. I use this in most of my price charts because it reduces the clutter with too many indicators on the screen. So if the ribbon is green both the MACD and ADX have started trending up. If the ribbon is red both the MACD and ADX are trending down.... |
| TrendingRibbonArrowsADX | Viorel CRISTEA | 2009-07-04 15:05:20 | Level: basic system (2 comments) | Details |
| Buy (sell) signals exhaustive(!?) trading system, with elementary, but strong rules.... |
| Triangle exploration using P&F Chart | Graham Kavanagh | 2002-12-01 01:51:11 | Level: semi-advanced exploration (0 comments) | Details |
| This is exploration for charts making triangle patterns. The chart is for the P&F chart using High/Low prices.... |
| Triangle search | G Kavanagh | 2002-07-15 21:54:53 | Level: basic exploration (1 comments) | Details |
| Triangle search using HHV and LLV. I vary the length of the search to locate different size triangles. d1 & d2 are either 10 & 2, 20 & 4, 40 & 10.... |
| Triangle Search Extended | Brian Wild | 2007-02-11 01:02:36 | Level: medium exploration (0 comments) | Details |
| An extended version of th etriangle search by G Kavanagh... |
| Triangular Moving Average | Anthony Faragasso | 2002-12-14 11:47:32 | Level: basic indicator (2 comments) | Details |
| A Triangular moving average is similar to exponential and
weighted moving averages except a different weighting scheme
is used. Exponential and Weighted averages assign the majority
of the weight to the most recent data. Simple moving averages
assign the weight equally across all the data. With... |
| Triangular Moving Average new | ali | 2006-09-09 09:03:23 | Level: basic system (2 comments) | Details |
| //Triangular Moving average
//Anthony Faragasso
//December, 2002
/* A Triangular moving average is similar to exponential AND
weighted moving averages except A different weighting scheme
is used. Exponential AND Weighted averages assign the majority
of the weight to the most recent data. Si... |
| Trigonometric Fit - TrigFit with AR for cos / sin | Mich | 2006-12-06 20:18:38 | Level: medium indicator,function (2 comments) | Details |
| Trigonometric Fit Based on :
- AR MODELING (Burg AND Yule-Walker method are implemented) for frequency estimation
- Generalized Least Square Error to compute Amplitudes and Phases
(because AR estimate of the amplitudes on the spectrum are bad)... |
| TRIX | Charlie Ehm | 2002-07-12 19:17:38 | Level: basic indicator (0 comments) | Details |
| A home-brew version of Amibroker's built-in TRIX indicator, plus minimal trading rules.
... |
| Trix Bars number | reinsley | 2009-03-03 05:41:29 | Level: basic indicator (1 comments) | Details |
| Count Trix Bars for each swing.
Plot a ribbon with the bar number for up and down swings.
Colored swing.
Adjustable Scale PlotText above the ribbon : courtesy by Aron.
It helps to decipher a trend-countertrend-trend.
An easy count A-B-C or 1-2-3.
A serie of trix green segments longer than red... |
| TRIXXX | Roman Glinka | 2004-04-25 07:55:10 | Level: medium indicator (0 comments) | Details |
| Short term indicator: buy when indicator is upper 0 line and cross signal up, sell when indicator falling down ... |
| TTM Squeeze | Levent Pancuk | 2008-03-22 19:09:32 | Level: basic indicator (13 comments) | Details |
| Bollinger Bands AND Keltner Channel define the market
conditions, i.e. when BB is narrower than KC then we have
a market squeeze. When BB break Outside the KC then trade
in the direction of the smoothed Momentum(12).
... |
| Tushar Chande's Projected Range | Prakash Shenoi | 2006-08-13 12:14:03 | Level: basic indicator (1 comments) | Details |
| Plots projected price targets for the next day.... |
| Twiggs Money Flow | Stock_Alchemist | 2006-04-12 12:39:27 | Level: medium indicator (2 comments) | Details |
| Twiggs Money Flow is a derivation of Chaikin Money Flow indicator, which is in turn derived from the Accumulation Distribution line. However, Twiggs Money Flow makes two basic improvements to the Chaikin Money Flow formula:
To solve the problem with gaps, Twiggs Money Flow uses true range, rather... |
| Twiggs money flow weekly | Chris | 2008-08-31 10:30:04 | Level: basic indicator (1 comments) | Details |
| I added the weekly time frame to the code byStock_Alchemist Rayloom [at] yahoo.com
This weekly time frame can be drop&drag onto the Twiggs Money Flow in the daily time frame
Twiggs Money Flow is a derivation of Chaikin Money Flow indicator, which is in turn derived from the Accumulation Distribu... |
| TWS auto-export Executions-file parser | Herman van den Bergen | 2005-04-10 18:00:26 | Level: advanced function (5 comments) | Details |
| Intended for real-time traders using the Interactive Brokers TWS. This function converts the auto-exported trade executions file from the TWS to csv format, creates an AmiBroker compatible format for further processing, and plots real trades at execution prices on your chart. This is experimental co... |
| TWS trade plotter | Yofa | 2009-05-14 05:28:32 | Level: advanced system (0 comments) | Details |
| Plots auto-exported tws trades... |
| Ultimate plus | D o j i * ABU REHAB | 2006-04-11 13:39:56 | Level: basic system (2 comments) | Details |
| Ultimate plus wthe line to sell and buy
under 30 is buy
up 65 is sell... |
| UltraEdit editor highlight wordfile | Dave Merrill | 2004-11-15 13:57:33 | Level: semi-advanced system,exploration,indicator,commentary,function (1 comments) | Details |
| UltraEdit is a full-featured shareware programmer's editor. This file teaches it AFL's keywords, so it can color, format, captitalize, and auto-complete them like AmiBroker does. I think it's up to date as of AmiBroker version 4.63.1 Beta.
I often keep my standard AFL #include file open in it whi... |
| Using From and To dates from Auto Analysis in Code | Bruce M. Moore | 2005-06-06 22:40:53 | Level: semi-advanced exploration (0 comments) | Details |
| This code illustrates how to use the "From" and "To" date settings from Automatic Analyzer in AFL code. It is far faster to do it this way than to run your code from "0 to Barcount-1".
This method of extracting the dates and converting them to bar counts is rather convoluted, as you will see. I... |
| ValueChart | BHCombo | 2007-12-13 00:02:25 | Level: medium indicator (1 comments) | Details |
| Very Interesting oscillator developed at Landmark Asset Management landmarkassetmanagement.com.... |
| VAMA | kysiek | 2006-07-05 12:20:34 | Level: basic indicator (0 comments) | Details |
| Volume Adjusted Moving Average... |
| Varexlist | Jaco Jonker | 2001-07-06 04:30:40 | Level: medium system,indicator (4 comments) | Details |
| This is a basic exploration list I developed for the US markets. It has no fancy script, just plain widely used indicators setup in a logical format, with some unconventional combinations. It is a medium term system with excellent results in the past 5 years on the Dow Jones and Nasdaq 100, but the ... |
| Vertical Horizontal Filter | Tomasz Janeczko | 2001-06-16 08:34:26 | Level: basic indicator (0 comments) | Details |
| Vertical Horizontal Filter indicator. This filter identifies when a stock is trending and when it is in a congestion phase so the analyst can apply the correct type of analysis indicator, such as moving average for trends or stochastics for congestion. VHF readings above 0.3 to 0.38 indicate a trend... |
| Vertical Horizontal Filter (VHF) | Jayson | 2002-11-03 03:05:47 | Level: basic indicator,commentary (0 comments) | Details |
| A trend Measuring Indicator... |
| Vic Huebner | Vic Huebner | 2002-02-23 10:57:10 | Level: basic indicator (2 comments) | Details |
| This is an elementary display of Inside, Outside, and Key reversal bars. These sometimes are used to signal short term reversals.... |
| Vikram's Floor Pivot Intraday System | Sunando Ghosal | 2008-10-19 02:14:02 | Level: basic system (2 comments) | Details |
| Simple intraday trading with floor pivot levels with optional Hikin Ashi candle formations.... |
| Visi-Trade | bluueskyy | 2008-10-22 20:39:23 | Level: advanced system (2 comments) | Details |
| From Comments - See script for how to use it.
This Amibroker Script is for educational purposes only. I cannot guarantee
it's accuracy nor take any responsibility for your use of it. Use at your own risk.
This is not an automated trading interface - it is strictly a interactive interface.
If... |
| Visible Min and Max Value Demo | Jorgen Wallgren | 2009-03-07 06:46:03 | Level: basic showemail,function (0 comments) | Details |
| Demo of 2 fuctions I wrote, which will find the Maximum and Minimum value in the visible horizontal chart area. Can be used for many different reasons and this is only an example. Inpiration came from several different codes I have seen, but can\'t at this moment find out who created them. Thanks an... |
| Visualization of stoploses and profit in chart | Marcus Davidsson | 2006-07-31 09:09:04 | Level: basic system,exploration,indicator,commentary,function (8 comments) | Details |
| Clear visualization of stoplosses, ordinary entry/exit signals, profit and closing prices in the chart !!!
Takes the analytical part of the backtesting to an entire new level in my opion (reduces the importance of backtesting... |
| Volatility | Avi ben a | 2009-01-28 02:22:11 | Level: basic indicator (0 comments) | Details |
| simple Volatility indicator based on Standard Deviation.
you can find potential breaks when the std cross above
its EMA.
also try different periods for breakout and STD.... |
| Volatility Breakout with Bollinger Bands | Joachim Feseck | 2003-01-19 07:49:55 | Level: medium system,exploration (3 comments) | Details |
| This Tradingsystem gives buy and short signals when after Bollinger Bands got very narrow they spread out and the Close touches the band (top or bottom). Additionally the MFI has to confirm this volatility breakout. But please be carefull because some stock suddenly change direction and in this case... |
| Volatility Quality Index | Vic Huebner | 2002-07-13 16:31:48 | Level: medium indicator (3 comments) | Details |
| Plots the volatility quality index. I added a trend detector as a simple buy-sell indicator.... |
| Volatility Stop Indicator (VSTOP) | Edward Pottasch | 2009-11-08 04:13:49 | Level: medium showemail,function (4 comments) | Details |
| the code, vstop_proc.afl needs to be placed in your include directory which by default is Formulas/Include. Below code how to call the procedure. The procedure returns trailLong and trailShort. These arrays can be used to define entries or exits.
#include
SetBarsRequired(-2,-2... |
| Volatility System | Ed | 2004-10-18 05:46:18 | Level: medium system (1 comments) | Details |
| The Volatility System after Welles Wilder Jr
Book: New concepts in technical trading systems, 1978
Simple stop and reverse system. Did not see one single system designed by Wilder that actually works. We are so lucky having Amibroker and todays power of desktop computers.... |
| Volume - compared with Moving Avg (100%) | Thomas Zmuck | 2002-07-15 17:12:30 | Level: basic exploration,indicator (2 comments) | Details |
| This is principle only another view of the volume.
It shows you the difference from the current volume to the moving Volume in percent.
I like it, because it is easier to analyze. you dont need to compare the volume with the moving, which has everyday another value.
In this formula you see, for e... |
| Volume Color with Dynamic Limit | bluueskyy | 2009-08-24 14:15:01 | Level: basic indicator (0 comments) | Details |
| NOTE: This script ONLY WORKS properly on N-minute based charts
including hourly. Range, tick, and volume based charts
will default to the standard volume value.
Limit the max height of volume bars to some fraction of the
average daily volume from the previous X number of days. Useful
for d... |
| Volume Occilator | Ahsan | 2009-08-25 14:50:13 | Level: semi-advanced indicator (0 comments) | Details |
| In this indicator u can get the volume oscillator with moving average.... |
| Volume Oscillator | Steve Wiser | 2001-07-05 19:19:04 | Level: basic system,exploration,indicator (3 comments) | Details |
| Uses Volume oscillator to build a system test and indicator.... |
| Volume Weighted Moving Average | Jack Kutzer | 2002-07-10 11:23:59 | Level: basic indicator (0 comments) | Details |
| Conversion of the Volume Weighted Moving Average from Neuro Dimensions Tading Solutions to AFL.... |
| Volume wieghted moving average | Radek | 2009-08-09 10:56:20 | Level: basic system,indicator (0 comments) | Details |
| The best moving average weighted volume.... |
| VWAP - Volume Weighted Average Price | Brian | 2007-07-02 16:59:03 | Level: basic indicator (2 comments) | Details |
| The VWAP for a stock is calculated by adding the dollars traded for every transaction in that stock ("price" x "number of shares traded") and dividing the total shares traded. A VWAP is computed from the Open of the market to the market Close, AND is calculated by Volume weighting all transactions d... |
| VWAP versus Average Price | Edward Pottasch | 2010-03-06 07:20:13 | Level: medium indicator (1 comments) | Details |
| you need intraday data for this code to display, for instance intraday ES data. The chart will show the VWAP and the Average price inside the price chart. I started calculating this to be able to use the result to adjust daily pivot lines (which are calculated using price only). This is test code I ... |
| VWAP with standard deviation bands | larry jag | 2009-06-09 09:24:42 | Level: medium indicator (3 comments) | Details |
| Here is my version of VWAP with standard deviation bands. The code is very slow because there is one LARGE loop and then a smaller loop in it to calculate the variance+stddev. If anyone knows how to speed it up, please comment on it.
Note you need to have the setbarsrequired(10000,0) line or el... |
| Weekly chart | Graham Kavanagh | 2003-01-01 22:46:10 | Level: medium indicator (2 comments) | Details |
| Weekly chart to be shown in indicator window. This is for fixed weeks Monday to Friday.... |
| Weekly Trend in Daily Graph | Frank Snay | 2002-04-04 19:16:47 | Level: basic indicator (2 comments) | Details |
| A text description in the Title Line of a daily graph giving the weekly trend. Just add this code to any of your daily graphs.... |
| Weighted Index | Gerard | 2005-09-08 04:49:25 | Level: basic exploration (1 comments) | Details |
| Weighted Index using AddToComposite and Foreign functions.... |
| Weinberg's The Range Indicator | Marek Chlopek | 2001-10-17 02:51:46 | Level: basic indicator (7 comments) | Details |
| From S&C V13:6 (238-242)... |
| William's Alligator System II | TohMz | 2008-06-09 18:33:55 | Level: semi-advanced system,exploration (13 comments) | Details |
| To get a real picture of this go to the web site
www.profitunity.com and download the demo software
Investors Dream and see how this code compares.
You really need to read the book to get a picture of
what is going on. This is a good read. You can
get the Williams books on his web site as wil... |
| Williams %R with 9 period signal line | Anthony Faragasso | 2001-11-11 07:31:44 | Level: basic indicator (12 comments) | Details |
| An interesting phenomena of the %R indicator is its uncanny ability to anticipate a
reversal in the security's price. The indicator almost always forms a peak an turns
down a few days before the security's price peaks and turns down. Likewise, %R
usually creates a trough and turns up a few days... |
| Williams %R Exploration | Mubashar Virk | 2006-10-01 10:26:37 | Level: medium exploration (0 comments) | Details |
| This exploration may help identify stocks that one might like to enter a position into.... |
| Williams Alligator system | Steve Wiser | 2001-08-13 19:53:30 | Level: semi-advanced system,indicator (15 comments) | Details |
| This code attempts to do most of the Williams Alligator sytem
where the terms fractal up and fractal down are used. Along
with terms like Alligators month, lips, etc.
To get a real picture of this go to the web site
www.profitunity.com and download the demo software
Investors Dream and see h... |
| WILSON RELATIVE PRICE CHANNEL | TohMz | 2008-06-02 01:10:24 | Level: basic system (1 comments) | Details |
| Implement from:
http://www.traders.com/Documentation/FEEDbk_docs/Archive/072006/TradersTips/TradersTips.html
-- Script Creaded By Tomasz Janeczko, AmiBroker.com
Saw that this price channel is a part of metastock software, feel that it should below into this database.
So that need not search ... |
| WLBuildProcess | Fred Tonetti | 2006-09-16 05:30:39 | Level: basic exploration,function (1 comments) | Details |
| Builds a user designated working watchlist using the tickers from an external file, processes the users formula and adds to a composite which is stored in the final watchlist. Any number of files can be processed... |
| Woodie's CCI Panel Basic | Dennis Skoblar | 2008-01-08 18:19:10 | Level: basic system,indicator (3 comments) | Details |
| New cci time bar format.
This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this system using Amibroker. Conseq... |
| Woodie's CCI Panel Full Stats | Dennis Skoblar | 2008-10-19 10:15:29 | Level: medium system,indicator (1 comments) | Details |
| This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this system using Amibroker. Consequently, I do this only so ot... |
| Woodie's Heikin-Ashi Panel | Dennis Skoblar | 2007-12-17 22:59:46 | Level: basic system,indicator (1 comments) | Details |
| New ammended mock sidewinder code and updated display.
This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this ... |
| Woodie's Price Panel With Woodie's Pivots | Dennis Skoblar | 2007-12-17 22:58:59 | Level: basic system,indicator (0 comments) | Details |
|
This panel is updated periodicaly to help others learn and use this system using Amibroker. I am not "pushing" or trying to pursuade people to join up with it's originators. Rather, I enjoy improving and sharing the code needed to learn this system using Amibroker. Consequently, I do this only so ... |
| Woodies CCI | Mark | 2004-10-30 20:39:54 | Level: basic indicator (1 comments) | Details |
| I didn't see it on the list so here is what I coded up, enjoy!
Thanks Woodie!!... |
| Z-Score Indicator | MTR Investors Group | 2009-06-28 08:59:01 | Level: medium indicator (5 comments) | Details |
| MTR Investors Group - www.MTRIG.com
Statistical Z-Score Indicator: Tracks how many standard
deviations the price is from the mean. Interesting to note that Z-Score and RSI follow a very similar path. Use the Z-Score as an oscillator.
For more information on this indicator see the links below... |
| ZeroLag MACD(p,q,r) | Nand Kishor | 2003-04-27 01:33:18 | Level: medium indicator (3 comments) | Details |
| Here is ZeroLag MACD(12,26,9). U can use the parameter
capability to tweak the periods. In comparison to AB's
built in MACD(12,26,9), ZeroLagMACD signals show up
a few days earlier, and divergences are quite pronounced.... |
| Zig Explorer | Michael.S.G. | 2003-08-05 15:21:45 | Level: basic indicator (4 comments) | Details |
| /* Historical ZigZag Explorer.
*Use the Parameters Popup to "Look Back" in history
& watch the Zig adapt as you progress through.
(Hit "CTRL-R" to bring up the Parameters Dialog.)
OzFalcon.
*/... |
| Zig Zag | Jeff | 2005-06-14 22:15:57 | Level: medium indicator (6 comments) | Details |
| normal zig zag with following differences:
- uses log difference instead of percentage
- has trigger point indicating when highs and /lows were detected
log difference is better because it is symmetrical, log(5/10) and log(10/5) has same absolute value, whereas 5/10 and 10/5 have different valu... |
| Zig Zag Indicator with Valid Entry and Exit Points | Eric Tangen | 2004-04-21 21:37:30 | Level: basic indicator (42 comments) | Details |
| The Zig Zag indicator identifies pivot points but looks into the future - (beyond the right edge of the chart) to do this. This indicator plots a dot at the pivot point and an arrow at the bar when the pivot becomes known. The price bars are colored red for a pivot downtrend, green for a pivot uptre... |
| Zig-Hi Zap-Lo | TohMz | 2008-05-29 19:11:05 | Level: basic indicator (1 comments) | Details |
| To plot the Peak High and Trough Low instead of using close
price.
... |
| ZigZag filter rewrited from scratch in AFL | Tintin92 | 2004-12-28 17:42:50 | Level: medium indicator (8 comments) | Details |
| ZigZag filter rewrited from scratch in AFL... |
| ZigZag Retracements | AbdulKareem | 2007-10-23 13:13:39 | Level: advanced indicator (4 comments) | Details |
| ZigZag Retracements.
... |