Shoonya-Dev / ShoonyaApi-AmiBroker

10 stars 5 forks source link

Shoonya API-AMI Broker

Instructions ( for 64-bit Amibroker):

  1. Copy the ShoonyaAPI_x64.dll to the Amibroker/Plugins folder
  2. Copy cpprest141_2_10.dll to the Amibroker folder
  3. Install Visual Studio redistributable from https://aka.ms/vs/17/release/vc_redist.x64.exe
  4. If you are running a 32-bit AMI Broker in a 64-bit operating system then you have to install Microsoft Visual Studio redistributable 32-bit.
  5. No Market Data Feeds You will be provided, You Need to Contact Another Data provider Vendor.

Instructions ( for 32-bit Amibroker):

  1. Copy the ShoonyaAPI.dll to the Amibroker/Plugins folder
  2. Copy cpprest141_2_10.dll to the Amibroker folder
  3. Install Visual Studio redistributable from https://aka.ms/vs/17/release/vc_redist.x86.exe
  4. If you are running a 32-bit AMI Broker in a 64-bit operating system then you have to install Microsoft Visual Studio redistributable 32-bit.
  5. No Market Data Feeds You will be provided, You Need to Contact Another Data provider Vendor.

    First Login:

    Enter the Login Credentials provided in the Credentials window. NorenAmicache.dat is created on successful login and restarting Amibroker will read credentials from the same.

User Video Guide of Integration:-

https://www.youtube.com/watch?v=TXApp6GUDSQ&t=248s

AFL strategy:

One of the most important aspects of AFL is that it is an array processing language. It operates on arrays (or rows/vectors) of data. As such you will need to build guards into your AFL so as not to signal for the same data repeatedly. Read More here.https://www.amibroker.com/guide/h_understandafl.html

ShoonyAPI.afl provides a basic framework for Entry and Exit Signals on the last candle. Setup the Parameters of the AFL below

stg      = ParamStr("Strategy Name","Systematic Trading");
flag     = ParamList("STATE","STOP|START");
lasttime = StrFormat("%0.f",LastValue(BarIndex()));
exch     = ParamList("Exchange","NSE|NFO|CDS |BSE |MCX");
tsym     = ParamStr("TradingSymbol","XYZ-EQ");    <=Note set this up correctly for each symbol, we do not pick up the symbol being plotted.
qty      = Param("Quantity",1,1,1000,1);
prd      = ParamList("Product", "I|C|M|B|H") "I" For MIS, "C" For CNC, "M" For NRML, "B" For BRACKET ORDER, "H" For COVER ORDER;

The following method collects the signals for each data record as per your AFL and evaluates the last record for an order signal. Example RSI_Crossover.afl

ShoonyaFireSignal(Buy,Sell,Short,Cover);


Place Order:

In your afl (or ShoonyaAPI.afl ) call the method when you want to send the signal to Shoonya

NorenPlaceOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks);

DO NOT call this function directly in your AFL without a signal guard. This may result in multiple

Logs: AMIAPI_RequestLog.txt is created in the Amibroker directory. Check the same for confirmation.


Note: Amibroker runs the AFL code a couple of times every second for entire dataset. Make sure to build in checks to fire at the correct signal. An example of this is provided by ShoonyaAPI.afl


Example Buy Limit Order

exch = "NSE";
tsym = "CANBK-EQ";
qty = "1";
prc = "150";
trgprc = "0";
dscqty = "0";
prd     = "I";
trantype = "B";
prctyp = "LMT";
ret = "DAY";
remarks = "1234";

NorenPlaceOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks);       

Example Sell Limit Order


exch = "NSE";
tsym = "ACC-EQ";
qty = "1";
prc = "180";
trgprc = "0";
dscqty = "0";
prd     = "I";
trantype = "S";
prctyp = "LMT";
ret = "DAY";
remarks = "1234";
NorenPlaceOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks);  

Example Market Order


exch = "NSE";
tsym = "ACC-EQ";
qty = "1";
prc = "0";
trgprc = "0";
dscqty = "0";
prd     = "I";
trantype = "B";
prctyp = "MKT";
ret = "DAY";
remarks = "1234";
NorenPlaceOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks);       

Example StopLoss Limit Order

exch = "NSE";
tsym = "ACC-EQ";
qty = "1";
prc = Close;
trgprc = "100.5";
dscqty = "0";
prd     = "I";
trantype = "B";
prctyp = "SL-LMT";
ret = "DAY";
remarks = "1234";
NorenPlaceOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks);       

Example Cover Order

exch = "NSE";
tsym = "CANBK-EQ";
qty = "1";
prc = "155";
trgprc = "0";
dscqty = "0";
prd     = "I";
trantype = "B";
prctyp = "LMT";
ret = "DAY";
remarks = "1234";
blprc  = "150.5";

NorenPlaceCoverOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks, blprc);       

Example Bracket Order

exch = "NSE";
tsym = "CANBK-EQ";
qty = "1";
prc = "155";
trgprc = "0";
dscqty = "0";
prd     = "I";
trantype = "B";
prctyp = "LMT";
ret = "DAY";
remarks = "1234";
blprc  = "150.5";
bpprc  = "158";

NorenPlaceBracketOrder(exch, tsym, qty, prc, trgprc, dscqty, prd, trantype, prctyp, ret, remarks, blprc, bpprc);       

Symbol Master:- Check the Symbol Format from Below mention Symbol Master urls

NSE - Capital Market https://api.shoonya.com/NSE_symbols.txt.zip

NSE - Equity Derivatives https://api.shoonya.com/NFO_symbols.txt.zip

NSE - Currency Derivatives https://api.shoonya.com/CDS_symbols.txt.zip

MCX - Commodity https://api.shoonya.com/MCX_symbols.txt.zip

BSE - Capital Market https://api.shoonya.com/BSE_symbols.txt.zip

BSE - Equity Derivatives https://api.shoonya.com/BFO_symbols.txt.zip

Contact us

For any queries, feel free to reach us, by email at apisupport@shoonya.com or call 0172-4740000 & also Just visit our website there is a Live chat option.