amibroker

  1. F

    Alternative of Amiquote

    Do we have a alternative of Amiquote? The free version allows us to only update 10 scrips. Can we have a Python script to download NSE all scrips EOD data from yahoo or quandl in amibroker readable format? I tried reading amibroker database but it is in binary format so we can’t directly...
  2. B

    High Breakout Strategy

    Hi , Below is my code generates a buy signal if Previous Day High is crossed. _SECTION_BEGIN("LongHighBreakout"); lastDayHigh = TimeFrameGetPrice( "H", inDaily, -1 ); todaysOpen = TimeFrameGetPrice("O",inDaily,0); cond1 = C < MA(C,13); cond2 = C < MA(C,50); cond3 = Ref( L, -1 ) > lastDayHigh...
  3. V

    Need Simple Candle Pattern Exploration AFL

    Hello AFL Experts, Need Amibroker Afl for the Below Candle Pattern Exploration, Please Help Me. I am not an IT Or Coding Professional. 1. Bullish Engulfing (ONLY BODY SHOULD CONSIDER) Previous Candle - Should be Bearish(Red) Candle Next Candle - Should be Green Candle, This Candle Body...
  4. R

    How to execute the order immediately after 'Cross' instead of after the close of the candle in AFL

    How to execute the order immediately after 'Cross' instead of after the close of the candle in AFL. My Current AFL has a function which performs execution of order after the moving average crossover, but the order gets executed only after the closure of the current candle. Instead of that, I...
  5. M

    Excel EOD Bhav Copy Downloader for Equity,Index,Future & Option (NseEIFO)

    Dear All, I have Created Excel File for Download Nse Equity,Index,Future and Option Bhav Copy Files and import to Amibroker Database. Kindly Download this file from here : https://drive.google.com/open?id=1p-rsn8X2kqSFFSzPkHaGTphiiNNG_Wy2 . Video Help File ...
  6. N

    75 Minute Candle with 5 minute Supertrend

    Hi AFL folks, I am looking for an AFL code in this strategy : In a 75 minute candle, If 5 - minutes supertrend Indicator is below the 75 minute candle, and 5-minute RSI indicator value is between 32 and 50 - then it is sureshot BUY signal. In a 75 minute candle, If 5 - minutes supertrend...
  7. V

    Amibroker AFL Isnull

    I am trying to code supertrend formula in array: BASIC UPPERBAND = (HIGH + LOW) / 2 + Multiplier * ATR BASIC LOWERBAND = (HIGH + LOW) / 2 - Multiplier * ATR FINAL UPPERBAND = IF( (Current BASICUPPERBAND < Previous FINAL UPPERBAND) OR (Previous Close > Previous FINAL UPPERBAND)) THEN...
  8. V

    Static variable

    Dear Friends, I am trying to remove excess signals in amibroker. I am aware of exrem function but cannot use that as I have to set allowsamebarexit to true. Thus, trying to achieve the same using static function. However, not getting desired results. Below is my code: _SECTION_BEGIN("Price")...
  9. V

    Amibroker writing to file function

    I am using writing to file function: if(fh) { if ( LastValue(Buy1) == True AND alreadyopenbuy1 == "" ) I want to add time limit to it: startTime = 091500; // start in HHMMSS format endTime1 = 152900; // end in HHMMSS format timeOK1 = tn >= startTime AND tn <= endTime1; I tried using...
  10. V

    Amibroker Supertrend formula in Array

    I have a supertrend AFL formula in loop can any expert help in converting it into array: function SuperTrend(lenATR, width) { nATR = ATR(lenATR); pAvg = (H+L) / 2; upperBand = pAvg + width * nATR; lowerBand = pAvg - width * nATR; isUpTrend = True; dn = DateNum()...
  11. V

    Amibroker exrem function

    Need help on using Allowsamebarexit and exrem fucntion together. As using exrem, allowsamebarexit function doesn't work. Any help much appreciated. Thank you.
  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. P

    Download 1 minute IEOD for NSE-EQ, FnO, COMMODITY & CDS- ABOUT 18MONTHS DATA...!

    Dear Friends, Here is link for 1minute IEOD data for NSE-EQ (about 600 scripts), FnO, MCX & CDS scripts. CLICK HERE It is about 4Gb Data...
  14. A

    Avoiding Short trade if a Buy is active

    In the strategy for Intraday trades below, I need only one trade active in a day. For eg. If the buy trade is active, then short trade for that day shouldn't be triggered. Similarly, if the short trade has been triggered first in the day, then the buy condition shouldn't be triggered until the...
  15. A

    Amibroker - Get Study (Drawings on chart) Array on Exploration

    Hello, I have drawn few study lines on the chart and want to get its data in Exploration. I am not getting this data when i use the 'Study' function and try to add it in Exploration using 'AddColumn' function. Request help to resolve this. Thanks! Anuma
  16. A

    Place orders from Amibroker charts with a click

    Hello, Is there a way in Amibroker to draw Entry, Stop Loss and Target lines and then with a click of a button place the same order as Cover or Basket order in the trading account? Can someone give an AFL or an idea to make such AFL? Thanks Anuma
  17. trendtrade

    AFL Modification Work - Payment Basis

    Hello I have an AFL which is generating automated buy and sell trade signals, at the completion of the price bar. The problem is that if it finds 5 different stocks which meets the criteria, then it generates 5 signals for each of them simultaneously at the very same second. All I need to do...
  18. 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...
  19. P

    REaltime quote

    Hi, I wish to have 10-12 groups with each 10-12 scripts, however I m unable to save it in realtime quotes in amibroker. Pls give a solution to this.
  20. 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...