@technqvi, it is a bit more work.
For example, you can download a single ticker historical data (EOD) from Yahoo (selecting an appropriate range of dates) or any other data source that will allow you to save a time series in the .cvs format.
If you use Yahoo, open the file with a text editor and remove the first line (the column headers), replacing it with the ASCII import instruction to define the ticker (XYZ in the following line):
$NAME XYZ
Save the modified text file, whose first lines, will resemble the following sample:
$NAME XYZ
2018-06-07,22.900000,22.900000,22.600000,22.600000,22.600000,11088500 2018-06-08,22.600000,22.900000,22.400000,22.700001,22.700001,9438200 2018-06-11,22.700001,23.100000,22.500000,22.900000,22.900000,16729100
Now open AmiBroker. From the "File" menu select the "Import Wizard" and import the data (for details about its usage see the documentation).
For Yahoo .csv files you will need to change the fields order:

If you use another data source, proceed similarly to prepare a file (or more files) ready to be imported via the Import Wizard and define the fields order as needed.
Read also the Import ASCII specifications if you have to deal with additional fields or a particular date format.