Recent content by apfx

  1. A

    Amibroker vs Metastock

    ????? You are late to the party.
  2. A

    What programming languages are compatible with amibroker + quantshare?

    http://www.amibroker.com/bin/UsersGuide.pdf http://www.introductiontoamibroker.com/book.html
  3. A

    What programming languages are compatible with amibroker + quantshare?

    Amibroker: VB and JScript : http://www.amibroker.com/guide/a_script.html C++: http://www.amibroker.com/devlog/2006/12/15/amibroker-development-kit-adk-for-cc-now-available-to-everyone/ QuantShare: no clue.
  4. A

    My message to crazy many Amibroker spammers in EliteTrader

    You have been repeating this many times all over this board. You can start form here: If (You_Got_What_It_Takes() ) { ShutTheFuckUp(); StartBuildingYours(); } else { //just ShutTheFuckUp(); }
  5. A

    Amibroker - Is it King of retail trading software??

    You can do that too. Save analysis project with filter to explore only watchlist 0. Every symbol that will have new tick it will be moved to watchlist 0 Event == true will trigger exploration on watchlist 0 RequestTimedRefresh( 1 ); /* you have to detect when exploration is...
  6. A

    Amibroker - Is it King of retail trading software??

    http://youtu.be/tjvJwlg-g9Y
  7. A

    Amibroker - Is it King of retail trading software??

    It can be anything: New quote coming Order has been filled 5 min to market close price crosses a certain level new bar on chart mouse button clicked
  8. A

    Amibroker - Is it King of retail trading software??

    Suppose you have saved an exploration as analysis.apx in desktop lets say JScript: AB = new ActiveXObject( "Broker.Application" ); Project = "C:\\Users\\You\\Desktop\\analysis.apx" NewA = AB.AnalysisDocs.Open(Project ); if ( NewA ) { NewA.Run( 1 ); // start Exploration...
  9. A

    Amibroker - Is it King of retail trading software??

    Actually this is can be done already.
  10. A

    Amibroker - Is it King of retail trading software??

    Yes you can. To calculate multiple- security statistics you can use also AddtoComposite() function http://www.amibroker.com/guide/a_addtocomposite.html
  11. A

    Amibroker - Is it King of retail trading software??

    Having used AB for 10 years what i can say is: AB is sort of final destination if go with it you will never look again for any other charting or analytical software.
  12. A

    Creating own trading system

    My suggestion to you is : If you can quickly develop your strategy in whatever language, stick to that. If you can not code, start learning and cut the BS.
  13. A

    Creating own trading system

    I have used AB for 10 years, and I have not seen yet anything AB does not allow you to do. Coding skills can be limited AB is an example of quite the contrary. If someone has problems writing AFL, imagine other languages.
  14. A

    Amibroker: is it possible to personalize condition per each ticker ?

    symbol = Name(); switch ( symbol ) { case "AAPL": Buy = Cross ( Signal(), MACD()); AlertIf(Buy, "", "macd cross"); break ; case"MSFT": Buy = Cross ( C, EMA ( 15, C)); AlertIf(Buy, "", "ema cross"); break ; }
  15. A

    Creating own trading system

    That is absolutely not true. AB lets you do with a few lines what is impossible or "complicated" to do in other platforms. Just try to code and backtest the above strategy in your preferred Platform/language.
Back
Top