Dear Sir, I am looking for Nifty and bank nifty cash settled price for previous expiry to be plotted on chart as value and astrik or any symbol secondly I want top 3 strike price Highest call and put on chart can this be done ?
Answers » amibroker
Hi, I have a code to buy when the RSI<40 in a day chart. It generate signal when it is less that 40. But the RSI keeps going above 40 and below 40 for some time and during all the time when the RSI goes below 40 buy signal is generated. I want the si
Answers » amibroker
Just wanted to know what is difference between actual closing price and adjusted closing price of a stock
Answers » equity
Is bollinger bands an useful indicator? How are bollinger bands values calculated? How can it be used for trading?
Answers » technical_analysis
Is Commodity Channel Index (CCI) an usful indicator? How is CCI calculated? How can it be used for trading?
Answers » technical_analysis
Is it possible connect the Amibroker trial version to Interactive Broker demo account to send orders from automatic systems in AFL? I would like to test this option before purchasing the Amibroker Platform Thank you
Answers » amibroker
I use zerodha. I day trade nifty futures. In the nifty futures daily chart for the current series (Jan 2017), i am able to see prior data only until Nov 2016 hence i am not able to put the 200 EMA indicator on the nifty futures chart. Please let
Answers » technical_analysis
Is it true that high frequency traders prove to be a disadvantage for normal traders due to benefits like co location? if yes how is it affecting the normal traders ?
Answers » day_trading
Please let me know the symbol name for Bajaj auto for NSE exchange
Answers » equity
Hi Coding gurus, Could someone help me to prevent multiple buy signals from being generated. Scenio is as follows: Buy = a >b OR c>d; Sell = b>a or d>c; Now I keep getting buy or sell signal in subsequent bars till the condition is true, I w
Answers » amibroker
I sell 8900 Call for Rs 30 when the nifty is at 8600. Lets say nifty goes up to 8700 and the 8900 Call premium moves to Rs 40. Do i need to have Rs 10 margin in my trading account to avoid my trade being squared by my broker (Zerodha)
Answers » derivatives
What is the significance of TSQ and TBQ and can I use to predict market trends? (For eg: If TSQ is twice of TBQ is it advisable to go short ?)
Answers » technical_analysis
Could you Suggest few books on intraday trading which helps us to build and improve our trading strategy for a person who has started trading?
Answers » trading_strategies
What should be the EMA1 period and EMA2 period for it to be effective? (so that i can check for the cross over before entering into a trade ).
Answers » technical_analysis
What is the most effective way to do this so as to benefit us?
Answers » technical_analysis
What are some of the reliable indicators for intraday trading and how to use it effectively ?
Answers » technical_analysis
I'm generally charged PayIn and PayOut Obligations which is much higher than the brokerage. Isn't that a loss for me. I would like to know how it's charged and what measures can be taken to not face losses due to it.
Answers » brokers
I am planning to start Intraday trading for nifty stocks using bracket order. Can you please recommend me 5 to 10 stocks which have good liquidity and intraday movement?
Answers » manual_trading
Nifty June 7700 put price is around 100. I want to sell June 7700 put at the price of 100. Here are my questions: 1. If June series closes at or above 7700 then the premium amount of 100 is mine that is max profit is Rs 100 irrespective of what lev
Answers » manual_trading
Hi, Is it possible to modify below formula to exit only when the high of the bar on which trend changes is crossed in short trade and vice versa.? Factor=optimize("Factor",4,1,3,1); Pd=optimize("ATR Periods",8,1,100,1); Up=(H+L)/2+(Factor
Answers » amibroker
I am getting problem in my afl that is : buy and sell signal generates order but when trailing stoploss hits it doesnot create order or do not send orders for cover and short positions. In my afl whenever trailing stoploss hits it reverse the order
Answers » automated_trading
_SECTION_BEGIN("Price"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, High %g, Low %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C,
Answers » automated_trading
I day trade nifty and following has been my observation: 1. When the market is trending down / up and if i trade in the direction of the market most of my trades have been successful. 2. When the market is range bound (basically when market trade
Answers » trading_strategies
I day trade nifty and there are many days when i get the direction of the market wrong which results in me taking the trade against the direction of the market, the trade finally ends up hitting my stop loss. Can you please suggest me some tips / ide
Answers » trading_strategies
I day trade nifty. I use bracket order, keep my position size, target (12 points) & stop loss (8 points) consistent for all the trades i initiate. I generally, trade in the direction of the market but there are days when i get the direction of the ma
Answers » trading_strategies
What is muhurat trading? Is it ok for a day trader to take positions on muhurat trading day?
Answers » trading_strategies
I have trading system when a signal occurs buy or sell it doesnot send to pi ? They send me the code but I donot know how to implement it . And in which place I have to put it. _SECTION_BEGIN("PiBridge Test"); brd=Null; if(IsNull(brd)) { brd =
Answers » automated_trading
How can we get Next Month Expiry too be plotted automatically in this? //Variables to be set SymbolName = "NIFTY" ; NiftyMulitple = 100 ; function GetMonth ( MonthIndex ) { switch ( LastValue(MonthIndex) ) { case 1: monthabr = "JAN
Answers » amibroker
Made some additions to make it a OI Tracker, the presentation in Title or chart could be better to see the Max Pain immediately. Kindly suggest. //Variables to be set SymbolName = "NIFTY" ; NiftyMulitple = 100 ; function GetMonth ( MonthIndex
Answers » amibroker
I have an exploration in 10min timeframe with something like this (runs every 5mins) Buy = other conditions(these don't have cross) and cross(macdhistogram,0) and timenum()<1445;(purely intraday strategy) Is it possible to set it up such that it sh
Answers » amibroker
how to change symbol codes of options through afl itself on every expiry. Like during sep2015 expiry, the symbol used in afl is nifty15sep8000ce and on 25th sep, the symbol itself changes to Nifty15Oct8000ce. And as the Nifty value changes, the
Answers » amibroker
cestrike3 = MEDSTK+300; ce3=UnderL+EXPMTH+cestrike3+CP; OIce3 = Foreign(ce3,"I"); Plot(OIce3, "ce3",colorBlue, styleline); how do we put the symbol calculated in "ce3" in title.
Answers » amibroker
Is it possible to modify a watchlist through AFL code(reading is possible using categorygetsymbols but didnt find any code to modify it). By modify, I mean delete and add symbols to a watchlist.
Answers » amibroker
Is there anyway to "catch" the "Error10: Array subscript out of range" error and move on the next symbol in Amibroker multi symbol exploration. By default, if backfill for a partcular symbol is not done, the exploration throws errror 10 and just stop
Answers » amibroker
How can we track orders placed(and open positions) using Zerodha pi bridge afl code..the only exposed function I could find was PlaceOrder()..nothing to track positions, get previous orders.etc http://zerodha.com/z-connect/tradezerodha/pi-bridge/p
Answers » amibroker
I am not able to launch Zerodha Nest Terminal after doing fresh installation on my Widows 8.1 release. I get following series of error messages when i keep clicking "Log File Open Error", "File Open Failed", "Failed to open mpic config file" and "Did
Answers » brokers
I would like to use Pi Trading Terminal. What are the steps involved for getting access, installation & activation of Pi Trading Terminal?
Answers » others
Need your opinion on the below trading strategy Portfolio - 1 lakh Lot amount - 25000 Stop loss - 1250 Target - 2500 In 10 trades - 6 loss trades (7500), 4 win trades (10000) Don't trade further if there are 2 loss trades per day. Develop ha
Answers » trading_strategies
If neither the target nor stop loss is hit for a bracket order then will the trade gets automatically executed for market price at the end of the trading day.
Answers » trading_strategies
Which is a better tool Options or futures? What are the advantages & disadvantages of each?
Answers » trading_strategies