amibroker afl

  1. G

    Need Help with converting this Pinescript to AFL

    Need help with Converting this PineScript to Amibroker AFL. Code is for an indicator called RVOL (Relative Volume). Attempted to do it myself but its not the same. Posting both the codes below PINESCRIPT CODE var tooltip1 = "The more recent the data is, the more relevant it is. Longer period...
  2. bunti_k23

    Want to learn amibroker AFL coding, ready to pay.

    Hello guys, I want to learn amibroker AFL coding, and ready to pay. offline tutor is preferred, location mumbai.
  3. K

    Heiken Ashi Filtered Connors RSI

    This CRSI uses Heikin Ashi definitions for ohlc and is filtered using a triple exponential moving average. The pine-script code is as follows - //@version=5 strategy(title="Filtered Connors RSI", shorttitle="Filtered-CRSI", overlay=false, format=format.price, precision=2, timeframe=""...
  4. A

    can someon send me the scan results of this afl.. i dont have amibroker and i want to know if it works

    can someon send me the scan results of this afl.. i dont have amibroker and i want to know if it works
  5. A

    Pinescript to AFL

    Hi Friends, I am learning amibroker, and trying to convert the below pine script code into afl but not getting the correct result Can anybody help me to convert this to amibroker // INPUTS // st_mult = input.float(3, title='SuperTrend Multiplier', minval=0, maxval=100, step=0.01) st_period...
  6. K

    Super Trend AFL

    Hello Friends, I have just started to learn AFL, basic Buy and Sell Backtest i can do with Indicators but i got stuck with Super Trend Indicator, can anyone help me in this regard, Buy Condition = Cross (Close, SuperTrend) Sell Condition = Target or SL In sell condition, i want if stock...
  7. S

    Need help in AFL coding for strategy

    Hi, Can anyone please code the below strategy as I am begineer and learning AFL so not familier now. Logic: On starting Mark 30min 2nd candle high & low Buy Logic: If price break above 30min 2nd candle the Buy signal comes Targets (T1, T2, T3) = Set from parameter setting Manual in % from...
  8. M

    staticVarGenerateRank not working properly in Live Trading

    I want to replicate the function of positionScore function for live trading via scanner. I want to get only top 5 signals at every candle start. All my buy conditions are based on last candle close. I have a list of 50 symbols. My AFL scans this list and shows top 5 symbols based on their ADX...
  9. B

    Buy Signal condition check afl

    Hi I'm stuck in one of the issue to resolve fake signal. My requirement is when buy condition meet true first time then our code should check buy condition again in 3-4 time within 2-3 second, when last check (4th time) is true, then buy signal plot or generate. I don't want to use these...
  10. B

    Buy/Sell Signal Repainted

    Hi Below is code, When condition meet at current candel, it will not genrating any signal but when current candel is closed & open new candel then it give buy signal to the previous candel But i want signal on current candel when condition meet, can anyone help me...
  11. C

    I'm not able to make explorer for with multiple time frame screaner

    SetChartBkColor(ParamColor("Panel Color",colorBlack)); SetChartBkGradientFill(ParamColor("Upper Chart",colorBlack),ParamColor("Lower Chart",colorBlack)); periods = Param( "Periods", 14, 1, 200, 1 );//8 Ksmooth = Param( "%K avg", 3, 1, 200, 1 );//3 Dsmooth = Param( "%D...
  12. M

    Need Help code Amibroker - Buy lowest close last 2 days

    hey guys. could someone pls post the code for the strategy: - buy the lowest of last 2 days. after that, - sell the highest of the last 2 days like the picture attached thanks a lot
  13. K

    Find High of first 15min candle

    Hello Everyone, I want to find high of the first 15 min candle. I am using the below code. bi = BarIndex(); arrayitem = SelectedValue(bi) -bi[0]; firstbarHigh = High[arrayitem ]; This code is giving me the close price for the 1st candle. I want High price of the first 15min candle. Plz...
  14. T

    THE QUICK FROG AN INTRADAY TRADING STRATEGY from VAN Tharp institute

    I am attaching rule-based intraday trading strategy from the vantharp institute. It looks quite interesting. They claim that it works well for the nifty50 index also. I luckily found it on the internet. Is it possible to code it in AFL format?
  15. G

    Help to code exit signal only if buy or sell generated previously.

    HellO Experts, I am new to Amibroker, I have learnt a lot from you all. I would like to thank you all for your help and support. I have one difficulty in coding the exit system in my AFL.. I kindly request everone of you here to try to fix me this. Let me post the code where I struggle...
  16. timircha

    licence amiquote and unlicensed amibroker can work on intraday

    I have purchased licensed version of amiquote and still i have unregistered amibroker, now I have some problem, so it is because of unregistered amibroker or there is some mistakes in my settings. first I can not start download I got an error, I have version of 3.23 amiquote licensed version...
  17. C

    Need afl code for the below inside bar conditions...

    Inside bar Downtrend explorer Conditions for Alert 1.Price less than ema<14 2.Occurance of Inside bar 3.Following candles price action(if any mutiple bars formed) should stay within the Inside bar pattern. ie. thier close should be within the mother candles high. 4.Price break below the...
  18. K

    [ AFL] send result to watchlist ordered by price

    How I can send list of stock "ordered by PRICE [from the lowest to the highest]" in a selected watchlist using AFL after an AA exploration? if anyone reply (and help) me, I explain better my question if not clear. Thanks in advance Kiss
  19. T

    Help Needed to fix buy and sell Arrow (intraday trading system with back test result attached)

    Dear All, I need help to fix the attached afl file. The buy arrow keeps on coming even during the sell signal. Can someone help me to fix this? when I backtested it on nifty spot data (5mins) it showed results as below am I doing something wrong? Please help to fix it ? feedback...