Amibroker - Learning how to use

mindgames

Well-Known Member
#13
Let's say you draw a trend-line on your chart on daily TF. Now, if you shift to Weekly TF, the TL would not appear. Again, there are 2 solutions:

1. Temporary: Double or right click on the drawing object > Color & style > Layer > Select Default Layer

2. Permanent: Windows > Layers > Double click on Daily layer > Uncheck "lock visibility to selected interval". (checked would mean that the drawing object would be visible only to selected intervals)
 

mindgames

Well-Known Member
#16
SetChartOptions function

# Syntax: SetChartOptions(Mode=0, Flags=0, gridFlags=chartGridMiddle, ymin=0, ymax=0, blankbars=0 )
# Helps to make many modifications to the chart:
# Eg. The default ichimoku chart in Amibroker does not show the period. Can use the following code to show dates on any of your charts it it is missing.
Dates' Axis

If it is dates that you want, there's a simpler way I figured out today...

Right click on the chart/indicator > Parameters > Axes & Grid > Show date axis? > Yes
 

mindgames

Well-Known Member
#17
Want to add some bar-space to the right of your chart?

1. Temporary: Click on your chart, press End key - 10 bars are added every time you press it OR
2. Permanent: Tools > Preferences > Charting > Blank Bars in Right > Change OR
3. Formula: Use SetChartOptions function (refer post # 11 - Credits: Trash)
Reduce blank bars: Click on your chart, press Home key - 10 bars are reduced.
 

Similar threads