afl

  1. S

    Want create a stock exploration tool in Amibroker

    Hi All, Can anyone help me develop a code which can help explore the tickers in market folder and shortlist in my favorite folder those that meet my criteria? I have a simple criteria to test: Check the last 2 price bars and identify those that have made lower lows/ higher highs. Thanks.
  2. B

    Equity() vs porfolio equity

    Hi all, :) this is my 1st post in traderji.com I'm using Amibroker 5.51.2 in Win7 Professional I'm learning the exercise in Howard Bandy Introduction to Amibroker with the following code. ----------------------------- FastMA = MA(C, 5); SlowMA = MA(C, 20); Buy = Cross(FastMA...
  3. Nehal_s143

    Day trading system for Nifty with high accuracy

    Hi friends I got this screen shot of amibroker in some online chat. sender was claiming high accuracy for this afl Can you please inform which afls are these and share the same regards Nehal
  4. GainsOne

    Making and editing a dll file for amibroker..

    Making and editing a dll file for amibroker.. Can anyone help me with using a dll file with support of afl files in amibroker.. Will be of gr8 help.. PLS REPLY..!!
  5. GainsOne

    Making and editing a dll file for amibroker..

    Making and editing a dll file for amibroker.. Can anyone help me with using a dll file with support of afl files in amibroker.. Will be of gr8 help.. PLS REPLY..!!
  6. GainsOne

    Making and editing a dll file for amibroker..

    Making and editing a dll file for amibroker.. Can anyone help me with using a dll file with support of afl files in amibroker.. Will be of gr8 help.. PLS REPLY..!!
  7. T

    NET Tech Photo

    http://www.traderji.com/attachment.php?attachmentid=17649&stc=1&d=1329791050 Any one knows about this
  8. S

    how to use afl files in amibroker for live buy sell signal

    hello all here, i got the Amibroker software and thankx to traderji forum i got what i was looking for the formulas AFLs but as i am a new user i dont know how to use the afl files plz guide me what i have to do in setting if der is i pick the afl files in auto analysis but...
  9. A

    Need help .. Jus want to add *BUY* signal on this AFL

    Please add buy signal on the below afl when value is less than or equal to -60 and sell if value is more than or equal to 60 Thanks in Advance _SECTION_BEGIN("Stochastic Momentum"); LookBack = Param("Lookback", 13, 2, 100 ); Smooth1 = Param("Smooth 1", 25, 1, 100 ); Smooth2 =...
  10. Nehal_s143

    Stock Trend Index

    seniors can you Plese write afl for STI http://www.niftylivecharts.com/blog/how-to-use-the-sti-charts/ How to use the STI Charts The STI, ( Stock Trend Index ) is a complex algorithm designed to find the possible reversal point of the Particular Stock. In other words STI Targets the...
  11. A

    How to have multiple simultaneous open position in 'Same' security in amibroker.

    hi I am trying to backtest a system which buys on certain condition being fulfilled. After taking first open position it should take new position again & again for each entry signal (even if earlier positons are still open). amibroker currently waits for first position to close before taking...
  12. Debarghya Mukherjee

    AFL writing guide for new user

    Hello Friends, I started this thread because I did lot of googling but I have not yet found any good site that helps "How to write AFL". I know there is a site contains AFL Library but it is not sufficient. I have a computer background, so I understand how the process goes, I can write very...
  13. T

    Help with Amibroker Coding

    I was trying to code a simple system in AFL, but the resulting trades don't conform with the code I have written. Requirement - System buys on Close of a day, if that day is a second consecutive down day. i.e. Go Long at the Close of every 2nd Consecutive down day. (though not on 3rd, 4th...
  14. Nehal_s143

    Intraday NSE Nifty Trading

    This system looks interesting, only for member who obtain training from them worth Rs. 15,000 anybody has this afl ? please share http:// www .youtube. com/user/valuetechnicals Uploaded with ImageShack.us
  15. Nehal_s143

    Pin Bar System (Nifty sell trade with 24 pts stop loss closed in Profit of 333 pts :)

    Check each chart when the daily bar closes for a pin bar Make sure it is bouncing off of a major support and resistance level If the pin is pointing up against the resistance level we are looking to sell If the pin is pointing down against the support level we are looking to buy Set...
  16. Nehal_s143

    Good Indicator for range bound, overbought and over sold condition

    This indicator is working nicely on Nifty 5 min chart 4 to -4 range bound do not trade above 8 be alert with your longs below -8 bel alert with your shorts Please see attached image for details only problem is, its in mq4 format, seniors may please help to code it in afl, so that max user...
  17. M

    Need help with AFL to buy/sell options

    I need some help for writing an AFL related to options. I wish to refer to different symbol (programmatically) from AFL. For example, based upon value of underlying I wish to buy/sell various strike price options. Options naming (e.g. Nifty25May5500CE) again needs to be worked out with...
  18. M

    HELP. The same AFL code is working differntly !!!

    I have the following two codes which are saved as two different files // TimeFrameSet(in1Minute); Condition1 = IIf((Hour() == 9 AND Minute() >=15) OR (Hour() == 10 AND Minute() < 15), 1, 0); Plot(Condition1,"Plot for condition1", colorGreen); // TimeFrameSet(in1Minute); Condition1 =...
  19. T

    Help with AFL for Parabolic SAR - Beginner

    Hi I'm beginning to learn programming with AFL. I tried to code a basic stop-and-reverse system which buys and sells on price crossing over SAR. I think I may have done some error in the coding, because instead of Buying and Selling on the crossover of the price on the SAR 'dot', the system...
  20. FreeIntradayTips

    Calling another program from AFL

    Hi.. Does anyone know how to call another executable or any other program from within a AFL? I need to send myself some alerts on email while I work in office. I have written a small vb.net program and I want to invoke/call this program from AFL after certain conditions are met.