amibroker

  1. N

    Hey guy, help me check code alligators

    I am rookie in trader. I am very interesting alligator system I am adaptive code alligators of bill williams #####code###### //Robot-Alligators /* Edit 12/09/2016 Name: nEw*/ /* include 9 part 0.Money Mangaement 1.Alligators 2. Fractals 3. AO&AC 4. MFI Definition 5.Gator...
  2. C

    How to get real time MCX data for charting in Amibroker ?

    Hi traders, I recently got to know about Amibroker. It seems very interesting. I want to try some strategies and backtest them with AFL codes but I need live MCX data. How can I bring live MCX data in Amibroker ? I have Trade Tiger and Nest platform already.
  3. pinpoint159

    Help Needed in AFL Amibroker

    Hi everyone, I am writing a code on Amibroker AFL and I got stuck :confused:. It looks simple but somehow I couldn’t solve it. Actually I want to draw Closing Price line on my intraday charts. It’s very easy to draw high and low, you can write, >> Plot (LastValue(TimeFrameGetPrice("High"...
  4. H

    amibroker syntax error 30 . please help

    Hi guys , I am trying to change the bar color on amibroker , but they always give me the syntax error 30 . could someone help me identify the mistake pls ? Code 1 : SetBarFillColor(IIf(O <C, colorSeaGreen,colorOrange)); Code 2: SetBarFillColor(IIf(C>O,ParamColor("Candle UP Color"...
  5. S

    amibroker help

    Hello I have small doubt in amibroker. I have data which has data from 9:08 AM (which is pre market) and I have afl to explore shares crossing yesterday high. I am getting wrong result when exploring as it has consided 9:08 AM data also in day calculation because amibroker is considering data...
  6. M

    Repainting Vs Non-Repainting SuperTrend

    Hello guys. Good day to you all. I would like to know the difference between Repainting and Non Repainting Supertrend. Also where can I get Supertrend Indicator for Amibroker 6.0 Thanks in advance. :) Repainting Vs Non-Repainting SuperTrend
  7. M

    Amibroker VS NinjaTrader

    Which of these is better, Amibroker or Ninja Trader. Many argue that NT dis better cause it's free. But let us, for a moment, assume that Amibroker is also free. Both softwares free. Which one would use and why? Regards
  8. S

    code not working properly

    please help me. In the following code, i want sell to take place only when stop loss is cut or the target is met. But the position is exited on the very next candle bar. What am i doing wrong? _SECTION_BEGIN("SHITIZ"); COND2 = High >...
  9. C

    I need to stream Amibroker charts live on my website

    I want to show the buy/sell signals that Amibroker generates on my website. I tried lot of things but I couldn't find a solution. It would be even better if I can also stream the live charts to the website. The plan is to take the screenshot at some intervals and save it to an ftp mapped...
  10. A

    nseindia to Amibroker

    Hi Members, Please help me plot IV data for call and put in amibroker. I want the data to be pulled up from www.nseindia.com. https://www1.nseindia.com/live_market/dynaContent/live_watch/option_chain/optionKeys.jsp?segmentLink=17&instrument=OPTIDX&symbol=NIFTY&date=28APR2016 Thanks...
  11. wabuf

    AFL Popup script help

    Hi , i have written a strategy in afl but i dont know the code for popup message :confused: that will stay like 6 sec on screen and then goes away and this should be applicable to all the symbols .I want to use in intraday trading , its very difficult to scan each and every symbol during...
  12. TradeMind

    Struggling with my first AFL code

    Dear experts, I learned a basics of AFL coding and now I am trying to do some backtesting using following strategy: Buy at RSI(7) <= 30 Sell when price is greater than last bought price + 1 rs or if that condition is not met sell at next RSI(7) >= 70 I could do simple AFL backtesting...
  13. A

    SHAREKHAN API to amibroker

    sharekhan provides their new API for free to the clients. its basically real feed to ur program.they do have ami bridge but that costs around 4000 quaterly. I just want to know that is there any way i can use api in amibroker.any configuration or something. cuz it wil be nice to get feed from...
  14. A

    Amibroker Backtest Settings Template

    here is the all the amibroker backtest settings. Some settings can not be set using AFL. // Initialize the trading parameters //EnableRotationalTrading(); BuyPrice = SellPrice = ShortPrice = CoverPrice = Open; SetTradeDelays( 1, 1, 1, 1 ); //SetFormulaName( "TEST" ); SetOption(...
  15. B

    Trading Platform in Amibroker

    Can we create tradestation in amibroker that will maintain the account as broker account. Add buy sell short cover. Mainatiain the margin.
  16. P

    AFL help required .. How do I select first bar from available data?

    Let's say I need to check the high of the very first candlestick of the chart i have opened. Which function should i use for it? Can someone post the code for it? Your help would be appreciated.
  17. A

    Can any one make it a loop in afl

    Can any one make it a loop in afl Ydh1= TimeFrameGetPrice( "o", inDaily,-1); Ydh2= TimeFrameGetPrice( "o", inDaily,-2); Ydh3= TimeFrameGetPrice( "o", inDaily,-3); Ydh4= TimeFrameGetPrice( "o", inDaily,-4); Ydh5= TimeFrameGetPrice( "o", inDaily,-5); Ydh6= TimeFrameGetPrice( "o"...
  18. S

    Hello friends

    Dear Amibroker AFL writers, i want amibroker AFL (trading system) in 1 min time frame with price action trialing sl if any one is there pls reply me thanks
  19. M

    Need little help in afl programming....

    I wish to create a rectangle box on my chart which changes color according to time i.e from 9:40 to 10:00am its color remain green and after that it changes to blue. GfxSelectSolidBrush( colorBlue );//for rectangle color x = 1050; x2 = x-180; y = 130; GfxRectangle(x, y - 70, x2...
  20. M

    How to use timenum function?

    i want the value of variable Y to be 90 @09:30 and then it changes to 120 @09:35??? How to do it in amibroker??? I m stuck at this.. :confused::confused: