Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Monthly & Weekly grid for EOD for Amibroker (AFL)
extremist
almost 12 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker

Very first thanx to BrockQAW.
this code is alteration of his code.

this code cane be handy for those who work on EOD charts.

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago
Horizontal Live Priceline Tool
Submitted by northstar about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Grid_HourDay");
ShowGrid = ParamToggle("Show Grid", "No|Yes", 1);
if (ShowGrid == 1)
{
grid_DAY = IIf(Month() != Ref(Month(), -1), 1, 0); 
grid_DAY_color = ParamColor("?olorDAY", colorBlue);
Plot(grid_DAY, "", grid_DAY_color, styleHistogram|styleThick|styleNoLabel|styleNoRescale|styleOwnScale);
 
grid_HOUR = IIf(DayOfWeek() < Ref(DayOfWeek(), -1), 1, 0); 
grid_HOUR_color = ParamColor("?olorHOUR", colorBrown);
Plot(grid_HOUR, "", grid_HOUR_color, styleHistogram|styleDashed|styleNoLabel|styleNoRescale|styleOwnScale);
}
else
{}
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back