amibroker

  1. V

    need help for intraday data updating utility for amibroker local database

    i want to create auto intraday data updating utility for amibroker (local database).. i am currently updating it thru metalib.dll, but i want develop it like manshi.co.in /Rtdsdata.com application , which can directly update intraday data to amibroker (without any manual settings/dll), can...
  2. B

    binoos

    Hi, I am from UAE. I have 2 querries, regarding live data intraday. 1) I need 1/5 minute OHLC figures to an Excel sheet to feed my excel trading system (which is under construction ;) ) I am using Nest Trader and Nest2Ami for feeding Amibroker. Is it possible to get data (OHLC 1/5 min)...
  3. P

    how to draw indicator diff time frame on single graph

    Hi, Consider, any indicator e.g. Mov Avg . If we apply it on daily,weekly,monthly chart it gives diff values for each. I want to overlay all these into single daily chart. Any idea how to do it? Thanks, Paresh
  4. M

    Need AFL from code

    Hello, I'm using below code in nest trader and it is showing good result for trading. I want to have an AFL so that I can use it in Amibroker. BUY = EMA(CLOSE, 5) > SMA (CLOSE, 20) AND RSI (CLOSE, 21) < 40 SELL = EMA(CLOSE, 5) < SMA (CLOSE, 20) AND RSI (CLOSE, 21) > 60 BUY EXIT = RSI...
  5. M

    Need AFL as per defined logic

    Hello, I'm using below codes in Nest trader system and I want to create AFL using this code so that i can use it in Amibroker. Nest trader Code : BUY = EMA(CLOSE, 5) > SMA (CLOSE, 20) AND RSI (CLOSE, 21) < 40 SELL = EMA(CLOSE, 5) < SMA (CLOSE, 20) AND RSI (CLOSE, 21) > 60 BUY EXIT =...
  6. M

    Need AFL from specified logics

    Hello, Can someone from you please help me in creating AFL as per below logic ? BUY = EMA(CLOSE, 5) > SMA (CLOSE, 20) AND RSI (CLOSE, 21) < 40 SELL = EMA(CLOSE, 5) < SMA (CLOSE, 20) AND RSI (CLOSE, 21) > 60 BUY EXIT = RSI (CLOSE, 21) > 80 SELL EXIT = RSI (CLOSE, 21) < 30
  7. madhavareddy1203

    Prvious candles

    Hi guys, I want to see previous 3 candles high and low. want to display everytime on my chart. Can anyone suggest how to change this code. GfxTextOut("1.Open - "+O+" High - "+H+" Low - "+L+" Close - "+C, Hor+400, Ver+10 ); GfxTextOut("2.Open - "+O+" High - "+H+" Low - "+L+" Close - "+C...
  8. A

    AFL changes -- please help

    Hi Seniors, Please help me make changes to the below afl. I am looking for (image attached): 1. The latest pivots encircled in Yellow color plot as hard lines. 2. The previous to latest encircled in Green color plotted as dashed lines. Please help. To my understanding these pivots...
  9. C

    Please help me implement ticker-specific variables in AFL

    Hello, I have a long-only simple moving average crossover strategy with one added constraint; trades should take place only when the ticker price is in the specified range. I calculate the trading ranges for different tickers in the morning before the trading session at NSE opens. For eg. in...
  10. E

    Change Active Ticker from AFL in Amibroker

    Hi, I have an AFL script that iterates through scrips in a watchlist and does charting and buy/sell calls. When processing each symbol, i make a call setForeign(symbol). This changes the price arrays, but the barcount is the same for all the symbols (I know there is different amount of...
  11. B

    implementing multiple time frame analysis in AmiBroker

    This is a follow-up post to http://www.traderji.com/amibroker/71499-need-help-following-janeczkoimplementing-multiple-time-frame-analysis-amibroker.html I am having trouble getting this to work AmiBroker 5.6. I used the following steps: 1) Set up a 1-min chart and analysis 2) Coded up...
  12. L

    conversion of AMI AFL to MT4

    HI frinds This is kumar from hyderabad. i need help in converting an amibroker afl file to MT4 MQL4 file. any one from hyderabad please contact me on leoguy7 at gmail dot com thanks kumar
  13. L

    conversion of AMI AFL to MT4 file

    Dear all, kindly help me in converting an amibroker afl file in to MT4 indicator file. Here goes the Formula _SECTION_BEGIN("Chart Settings"); SetChartOptions(0,chartShowArrows|chartShowDates); SetChartBkColor(ParamColor("Outer Panel",colorBlack))...
  14. F

    adjust scale of graph in AFL using "Automatic", not "Custom"

    For main price chart, I have added ribbon at the bottom and also some signs, like arrows, or stars, on top of the HIGH. The scale is set to "automatic" then some of the stars may not have enough space to show at the top part of the window. And at the bottom part, the signs are covered or overlap...
  15. J

    Need AFL help: Plotting lines.

    Hello Senior Members, I tried my all efforts but could not succeed. Please help me to plot lines on the values for the strings that I have highlighted in RED color. Many Thanks to all. _____________________________________________________________ _SECTION_BEGIN("Setup"); //required...
  16. J

    AFL to plot High Low Close in Bar Chart (No Open)

    Hi Members, You all have always been of great help and support. I am searching for an Amibroker AFL to plot HLC (High Low Close) in a bar chart. I tried much but could not succeed in omitting plotting of Close in the bar chart. I have attached an image. The image highlighted in RED...
  17. Nehal_s143

    Wilder's smoothing afl

    Hi When using wilder's in Amibroker I am getting different value then Metastock hence want to know the calculation of wilder smoothing used in Metastock seniors please help to write afl Metastock Wilder's smoothing Regards
  18. Nehal_s143

    Wilder's smoothing

    Hi Request to all, please explain how Metastock calculates wilder's smoothing? When using wilder's in Amibroker I am getting different value then Metastock hence want to know the calculation of wilder smoothing used in Metastock Regards
  19. L

    Need an afl file

    Hi friends, I need an afl which has 70-80% success rate in INTRADAY trading of STOCK FUTURES and BANKNIFTY FUTURE. kindly post the AFL FILE. as soon as possible. all the best to all
  20. L

    How to use "apply Stop" with the method "Exrem" in the Amibroker?

    Hello, I would like some help from you. I'm developing a system of "Trading" in "intraday". I do not want to make an entry after an exit, in the same bar. I would only enter in the next bar, if at all. A friend suggested I use "Exrem", also i do not know how to use this method in...