NexusFi: Find Your Edge


Home Menu

 



Categories Help    

MultiCharts
MultiCharts Downloads / MultiCharts Indicators

Share MultiCharts indicators, EasyLanguage indicators.


Sort by
Filter

Show full/short entries Entries
Renko-Adaptive indicator_ konkop 07.03.2002 2 *
Renko-Adaptive indicator
(based on ATR)
Written by konkop 07.03.2002. -posted elsewhere byTums

note: Set the plot style to Bar High and Bar Low.
 
Suggest other entries I might like
Details: Renko-Adaptive indicator_ konkop 07.03.2002


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

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


// Displaced Moving Average with Projection
//


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

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

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

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

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

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


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


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


if ShowProjection and Displace > 0 then
begin

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

for value1 = 1 to Displace
begin
plot1[Displace - value1](avg_st + st_diff* value1 ,"s", black);
plot2[Displace - value1](avg_lt + lt_diff* value1 ,"l", black);
end;
end;
 
Suggest other entries I might like
Details: Displaced Moving Average with Projection


March 21st, 2010
Size: 1.36 KB
Downloaded: 328 times
Fibonacci Bands ver1 4 *
Plots fib bands around an ema you chose.
 
Suggest other entries I might like
Details: Fibonacci Bands ver1


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

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

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

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

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

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

Low(1)>Low(2)
High(1)>High(2)
Close(1)>Close(2)
High(3)>High(2)
High>High(3) trigger
 
Suggest other entries I might like
Details: 3 Bar Reversal 2a


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

Keywords: bar reversal websouth
Price Action Trainer ( beta) 5 *
Price Action Trainer ( beta)

author Tams

word from author

This indicator helps the new traders to tune-in to the price bar formations
as the market unfolds.

It reads the Price Action at the micro level,
then prints the formation names on the screen.

Formations:
ib = Inside Bar
FTP = Flat Top Pennant
fbp = flat bottom pennant
ccc = congestion, convergence, centering

This indicator is in beta;
comments and suggestions are welcome.

You are invited to post your renditions as well.


The code should run in MultiCharts and TradeStation,
but I am not sure about OEC.
I have uploaded a PLA file for MultiCharts.
TradeStation users: if you don't know how to import the code into your software,
please spend 5 mins on your users manual to find out how.
 
Suggest other entries I might like
Details: Price Action Trainer ( beta)


March 7th, 2010
Size: 7.38 KB
Downloaded: 419 times

Keywords: multicharts
Scalper's HL Bracket (with Sound)V.01 5 *
Scalper's HL Bracket (with Sound) author Tams


This indicator labels the HL price of previous bars.
Useful for scalpers, or as a guide to set stops.


you can change the sound by modifying these inputs:
Sound.up("c: \windows\media\ding.wav"),
Sound.dn("c: \windows\media\ding.wav");

You can even make your own sound with the Sound Recorder that comes with Windows.
 
Suggest other entries I might like
Details: Scalper's HL Bracket (with Sound)V.01


March 3rd, 2010
Size: 12.70 KB
Downloaded: 452 times

Keywords: multicharts
Shifted_Version.01beta 5 *
author Tams


Shifted


word from author



There is a school of thought that
today's price action is just a continuation of yesterday's.

...and that if you shift today's price bars so that today's opening price matches
with yesterday's close, you will see a continuation of yesterday's price action.

This indicator does just that:
it will shift today's price bars by the open/close difference.

Note: this chart is for price action reference only.
Please don't trade with this chart or you might get a very disappointing fill.
It is recommended that you cover up the price scale when you read this chart.
 
Suggest other entries I might like
Details: Shifted_Version.01beta


March 2nd, 2010
Size: 872 bytes
Downloaded: 259 times

Keywords: multicharts
Lateral Formation_version: beta 0.1 Code MultiCharts
author Tams

Lateral Formation
version: beta 0.1

word from author


Lateral Formation is a price pattern where
bar 2 and bar 3 are within the HL of the 1st bar.

The Lateral will continue until 2 consecutive closes outside of the

1st bar HL in the same direction.
 
Suggest other entries I might like
Details: Lateral Formation_version: beta 0.1 Code MultiCharts


March 2nd, 2010
Size: 2.08 KB
Downloaded: 290 times

Keywords: multicharts
Murrey Math Buttons for eSignal 5 *
MurrayMathAltButtons.EFS (eSignal)
Older indicator by Chris Kryza still works great!

README for MurrayMathAltButtons.EFS
Current Version 3.3.0 - 04/28/2003
NOTE!!!!:
This script was developed and tested using the features available in:
eSignal Release Candidate 7.2
Build 541
Dated: 01/21/03
If you are using an earlier eSignal version, it is possible and even
likely that errors will be generated when you attempt to use this
script.
also... this particular release (3.2.0) makes use of the new features
available in Beta 566. If you don't have this Beta, don't worry and
the script will run just fine under an earlier version (as long as
your version is 7.2 Build 541 or greater!).


[INTRODUCTION]
If you are currently using an older version of this script, please
completely unload (i.e., the Remove option in the chart pop-up menu)
the old script from your Advanced Chart Template and then load this
new version. If you don't completely remove the old version first, then
any new parameters that have been added will not show up and errors will
likely be generated.
This script does a fairly good job of creating Murrey Math lines
in an eSignal chart. It is based on the work of Tim Kruzel found in
the public domain and, as tested, the numbers seem to match up with
Tim's AMM frame calculator program. The biggest recent addition is
the button feature which allows you to quickly change parameters
without going into the Edit Studies dialog.
Version history is available at the bottom of this ReadMe.
For information on Murrey Math please go to Murrey's web site
at www.murreymathtrading.com.

[KNOWN ISSUES]
Buttons - If you use the Buttons option (where buttons display on
the screen so you can quickly change frame size, etc.) you must
double-click on the buttons for the screen to refresh properly. Eventually
I will figure out how to make it all work with a single-click.
Frame Size - Size of 4 removed as an option and size of 8 added.
When using this script with Intraday bars there is a small issue with
grid alignment as the very first bar of the day is forming. For example,
if you load a 5-min chart with this script at 9:00am EST the last bar
displayed will be yesterday's closing bar (assuming you have a time
template that restricts display to market hours). The grid alignment
will be correct. At 9:30am, the market opens and the first 5-min bar of the
new day will begin to display. You will notice at this time that the Blue
start-of-frame vertical line will be (incorrectly) shifted one bar to the
right. The solution is to simply right-click in the chart and choose the option
at the bottom of the pop-up menu to reload the MurrayMathAlt.EFS script.
The script will then realign and you should have no further problems. This
issue only comes into play as the first bar of the day is forming and will
automatically correct itself after the first bar has completed. So, if you
are trading 1-min bars you probably won't even notice it, if you are trading
15-min bars then you should probably do the 'refresh' as described above. This
is on my short-list of things to fix.

[NOTES]
When using this script with Daily bars, the start-of-frame value
is based on the date of October 2, 2002 which I believe is the
correct value. This date will need to be changed each year (it is
one of the script options discussed below).
When using this script with intraday bars, the script will use the center-
point of the day (11:58am) to calculate the vertical time bars based upon
the frame size that is currently being used.
Intraday operation is probably best if used with an eSignal time template
that only displays bars during market hours (i.e., 9:30am - 4:00pm EST)
(4:15pm for Futures). This will force the MM calcs to skip the pre- and
post-market data. If, however, you wish to use this script with all sessions,
I see no reason why it wouldn't work for you.
[INSTALLATION]
Copy the EFS script file into one of your Formula Folders. Formula Folders
are typically found at C:\Program Files\eSignal\Formulas. You can copy it into
any of the available folders (e.g., BuiltIn, Helpers, Downloads, etc.).
The actual EFS file is heavily commented so if you have questions just load the
EFS file into the eSignal Formula Editor and review the code.
[SCRIPT OPTIONS]
Several options can be adjusted from within the eSignal Study Properties
window.
frSize: Frame Size. This can be set to 8,16,32,64,128 or 999 for AutoFrame. Default value is 64.
frOptIncrement: Optimum 1/8th Increment Size: This only comes into play if the frSize option is set to
999 which activates the AutoFrame feature. The AutoFrame feature attempts to find the
MM frame size that has 1/8th increments that most closely match the value that you set
in frOptIncrement. For example: When daytrading the S&P EMini, a 1/8th increment size of
2 ES points would be nice. To accomplish this, set the frSize option to 999 and then set
the frOptIncrement to 2.0. This will force the script to evaluate all frames sizes (e.g.,
8,16,32,64 and 128) and it will pick the one that results in 1/8th increments closest to
our 2 points.
frMult: Frame Multiple: This can be set to 1, 1.5 or 2. Default value is 1.5.
frIgnoreWicks: Ignore the wicks when computing High and Low prices. This can be set to 0 (don't ignore wicks) or
1 (ignore wicks). Default value is 1 (i.e., ignore wicks)
frSpeedUp: Draw (bot to top) speed lines in current price/time square. This can be
set to either 0 (don't draw) or 1 (draw). Default is 0.
frSpeedDn: Draw (top to bot) speed lines in current price/time square. This can be
set to either 0 (don't draw) or 1 (draw). Default is 0.
frMomUp: Draw (slanting upward) 45-degree momentum lines within the current price/time
square. This can be set to either 0 (don't draw) or 1 (draw). Default is 0.
frMomDn: Draw (slanting downward) 45-degree momentum lines within the current price/time
square. This can be set to either 0 (don't draw) or 1 (draw). Default is 0.
frCircles: Draw the circles on the chart. This can be set to either 0 (don't draw them)
or 1 (draw them). Default is 1.
frRightMargin: Max number of bars to extend to the right when creating a new Price/Time
square. The purpose of this option is to conserve screen space when a new
square is created. This can be set to any integer value. The default value
is 15. Note: no error checking is done so if you type in a non-numeric value
the script will likely generate an error. This feature now works with both
intraday and daily charts (previously was intraday only).
frStartDate: Base date for calculation of non-intraday frame start. Default setting is
October 2, 2002. This will need to be changed each year. Note: You must type
in the complete date (i.e., October 2, 2002 or April 4, 2000, etc.). NOTE:
frStartDate MUST be an actual trading day (e.g., not a Sat, Sun or holiday).
frUseButtons: Display buttons on the chart that allow you to quickly change frame sizes and
also to draw speed and momentum lines. This can be set to either 0 (don't display
buttons) or 1 (display buttons).
frTimeLines: Draw the vertical time lines on the chart. This can be set to either 0
(don't draw them) or 1 (draw them). Default is 1.

frBaby8: Draw lines and prices at mid-point of MM lines (e.g., Baby Eighths). This can be
set to either 0 (don't draw them) or 1 (draw them). Default is 0.
frVertColor: Draw the vertical time lines using the standard 8th colors or draw them as
grey lines. This can be set to 1 (use colors) or 0 (don't use colors). Default
is 0.
So, an example completed Edit Studies window would look like this:
frSize: 64
frOptIncrement: 2.0
frMult: 1.5
frIgnoreWicks: 1
frSpeedUp: 0
frSpeedDn: 0
frMomUp: 0
frMomDn: 0
frCircles: 1
frRightMargin: 10
frStartDate: October 2, 2002
frUseButtons: 1
frTimeLines: 1
frBaby8: 0
frVertColor: 0
Comments, bug reports, etc. should be posted in the EFS Studies Bulletin Board area
on eSignal Central or sent to me directly at [email protected].
Thanks.
Chris Kryza
[email protected]
 
Suggest other entries I might like
Details: Murrey Math Buttons for eSignal


August 8th, 2009
Size: 16.30 KB
Downloaded: 300 times

Keywords: multicharts
Murrey Math Lines for Multicharts & Tradestation 4 *
Murrey Math lines has been widely discussed in this forum. Please take the time to read and learn about the indicator and how to apply. Thanks.
 
Suggest other entries I might like
Details: Murrey Math Lines for Multicharts & Tradestation


August 8th, 2009
Size: 13.12 KB
Downloaded: 641 times

Keywords: multicharts
 



 
Category
 




© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top