Amibroker For Dummies........a Beginner's Forum On How To Use Amibroker

will this thread serve its purpose?

  • yes

    Votes: 397 93.2%
  • no

    Votes: 29 6.8%

  • Total voters
    426
Trendlines in different timeframes

Is there a way to draw trendlines in Ami that are consistent across different timeframes? For example, this trendline is drawn on a weekly graph:



When viewed on a daily timeframe, the trendline appears off the mark:



The difference appears reasonable, as the anchors of the weekly chart is based on the lows on the Y-axis and the end of the week on the X-axis.

However, on thinking about it some more, it seems reasonable to expect that Ami would internally anchor correctly if it has the lower timeframe data.
 
How can i get Yahoo Historical Data for NSE using AmiQuote in Amibroker. I have tried it multiple times but it doesn't seem to work. Gives error during download.

Maybe I am doing it all wrong. I have a empty database with nothing. I added a Symbol "SBIN.NS" in m Symbol list and clicked "Auto Update " and Download button. Gives error and no data is downloaded


I have tried RealTimeDataExpress to populate the historical data in my Amibroker and that seems to work. After that I removed the database and created a new one an tried to polulate using Amiquote, but unable to do so.

Any help will be appreciated.

Regards,
 
Seniors, Please help me out. I am a beginner in Amibroker and need your precious time here.

Question:
If I have data in a CSV file, and I click on Import ASCII, it is loaded in my Amibroker successfully. Is there any way I can automate this via a program? so that I dont have to click everytime to import. Is this possible through the AFL?


Speculator
 
If I have data in a CSV file, and I click on Import ASCII, it is loaded in my Amibroker successfully. Is there any way I can automate this via a program? so that I dont have to click everytime to import. Is this possible through the AFL?
The question is unclear. Is it the same filename(s) in the same directory? How often do you want to import it programmatically?

Maybe what you are looking for is a keyboard macro such as provided by AutoIt.
 
The question is unclear. Is it the same filename(s) in the same directory? How often do you want to import it programmatically?

Maybe what you are looking for is a keyboard macro such as provided by AutoIt.
I have made a utility which downloads the data from Yahoo. This utility generates the CSV. I was clicking in Amibroker "Import ASCII" and importing it. It successfully accepts that imports that. I was trying to write an interface with the help of which that utility will automatically send the data to Amibroker without clicking the Import in Amibroker. I am programming in C# in Visual Studio 2008.

Regards
 

VTC

New Member
I want to use this formula as a Explorer please convert into afl, thanking you
C > MA(C, 20) AND MA(C, 20) > MA(C, 50) AND MA(C, 50) > MA(C, 200) AND V > 50000;
x = C > MA(C, 20) AND MA(C, 20) > MA(C, 50) AND MA(C, 50) > MA(C, 200) AND V > 50000;
filter = x;
addcolumn(C,"Close");
addcolumn(MA(C,20),"MA20");
addcolumn(MA(C,50),"MA50");
addcolumn(MA(C,200),"MA200");
addcolumn(V,"Vol");
 

Similar threads