Re: [amibroker] max bars database settings understanding

2010-09-05 Thread Prashanth
I think the 50 limit is with regard to Number of Bars (Database Settings) and not with regard to total size of each ticker. For example with no major issue my Index data currently has 3573277 quotes. Backtesting may be bit sluggish, but I accept it since it gives me a very large time frame

Re: [amibroker] max bars database settings understanding

2010-09-05 Thread Prashanth
My No of Bars is 1 You may have kept the 100K limit in Preferences - Data - Limit number of Saved quotations. Revmove the tick mark and you should be able to accumalate more data. Cheers Prashanth - Original Message - From: reinsley To: amibroker@yahoogroups.com Sent

Re: [amibroker] short/cover only system

2010-08-23 Thread Prashanth
Click on Settings in Automatic Analysis and change Positons from Long to Short. Cheers Prashanth - Original Message - From: learnerst learne...@yahoo.com To: amibroker@yahoogroups.com Sent: Friday, August 20, 2010 2:09 AM Subject: [amibroker] short/cover only system I am developing

Re: [amibroker] Re: Problem with ExportImage in AB 5.30.4?

2010-08-22 Thread Prashanth
Progster, I do not have snag it. When I run the JS file I get blank pic files for stocks in Watchlist while getting the pic correct for the test.gif (current ticker that is open). Cheers Prashanth - Original Message - From: Progster progs...@codefortraders.com To: amibroker

Re: [amibroker] Re: Forming Equal Wieghtage Index out of an Industry

2010-08-09 Thread Prashanth K
Have you tried AddtoComposite ? Cheers Prashanth On Tue, Aug 10, 2010 at 10:02 AM, sohamdas soham...@yahoo.co.in wrote: Hi Folks any help on this Soham --- In amibroker@yahoogroups.com, sohamdas soham...@... wrote: Hi Folks, I have got my universe of stocks classified

Re: [amibroker] Re: Forming Equal Wieghtage Index out of an Industry

2010-08-09 Thread Prashanth K
A sample code for forming Sector Composites, // Sector Composites: sym=~+SectorID(1); AddToComposite(L,sym,L, 1 + 2); AddToComposite(O,sym,O, 1 + 2); AddToComposite(H,sym,H, 1 + 2); AddToComposite(C,sym,C, 1 + 2); AddToComposite(V,sym,V, 1 + 2); Cheers Prashanth On Tue, Aug 10, 2010 at 10:44

Re: [amibroker] back testing formula: please help me

2010-07-13 Thread Prashanth
Open the formula and add conditions for Buy and Sell. Its more likely that the formula you are using is a Plot / Explrore and hence Buy / Sell has not been coded. Cheers Prashanth - Original Message - From: s.momtaz s.mom...@gmail.com To: amibroker@yahoogroups.com Sent: Tuesday, July

Re: [amibroker] Amibroker portfolio help

2010-07-08 Thread Prashanth
Add all your stocks to a Watchlist. Create a AFL to explore for all your requirements (High, Low, etc) and explore them for that particular Watchlist. That should provide what you need. Cheers Prashanth - Original Message - From: Rajashekhara Saidam To: amibroker

Re: [amibroker] Getting following error message

2010-06-23 Thread Prashanth
Prashanth - Original Message - From: Vinay Gakkhar. To: Amibroker Sent: Wednesday, June 23, 2010 22:40 PM Subject: [amibroker] Getting following error message Dear Suny, What does this error message mean? What to do now? Best regards, Vinay Platform = Microsoft

Re: [amibroker] Automation of Buy/ Sell commands

2010-06-17 Thread Prashanth K
As far as I know, you cannot automate on ODIN since it has not made available its API. Cheers Prashanth On Thu, Jun 17, 2010 at 2:34 PM, Vinay Gakkhar. vgakk...@yahoo.co.ukwrote: How can I do automation of Buy/ Sell commands using the buy sell signals generated by Amibroker on RT data

Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish

2010-06-17 Thread Prashanth
Plot(Cond1, RSI, Colors, styleHistogram); Cheers Prashanth - Original Message - From: Infinity Home Loans To: amibroker@yahoogroups.com Sent: Thursday, June 17, 2010 19:29 PM Subject: Re: [amibroker] Re: Request Is there any afl greencolor for bullish zone and red for bearish Hi

Re: [amibroker] (unknown)

2010-06-10 Thread Prashanth
that this is a SPAM attack and not a genuine message. Cheers Prashanth - Original Message - From: Keith McCombs To: amibroker@yahoogroups.com Sent: Thursday, June 10, 2010 20:32 PM Subject: Re: [amibroker] (unknown) Why are these kinds of messages being allowed on the AB Yahoo

Re: [amibroker] Bar Chart

2010-06-10 Thread Prashanth
Plot(Close, Close, IIf(CO, colorGreen, colorRed), styleBar ); Cheers Prashanth - Original Message - From: Vishvesh To: amibroker@yahoogroups.com Sent: Thursday, June 10, 2010 21:54 PM Subject: [amibroker] Bar Chart Friends, How can i get bar chart in AB, like MS

Re: [amibroker] Data Question

2010-05-31 Thread Prashanth
Instead of importing MS data, link the Viratech database with Amibroker using File - Database Settings and Selecting Metastock data plugin as the data source. By doing this, as soon as Viratech's data folder is updated, same is reflected in AB as well. Cheers Prashanth - Original

Re: [amibroker] How can I load historial options data?

2010-05-23 Thread Prashanth
You have to concatenate the Ticker Series to include Strike and Expiry Example: Ticker Symbol: NIFTY-I-5000-CE Represents Nifty Current Month (Series) 5000 Strike Call European. Once you have the ticker symbol in such a format, it can be easily imported. Cheers Prashanth - Original

Re: [amibroker] Re: Restricted Plot

2010-04-21 Thread Prashanth
It does work if you were to just replace array with C or any other array and period with 21. Plot( IIf( BarIndex() = BarCount - 21, EMA( C, 21), Null ), , colorAqua ); Cheers Prashanth - Original Message - From: osp2osp osp2...@gmail.com To: amibroker@yahoogroups.com Sent: Wednesday

Re: [amibroker] Help needed in coding

2010-03-29 Thread Prashanth K
, colorOrange ), 0, IIf( Cover, Low, High ) ); Cheers Prashanth On Tue, Mar 30, 2010 at 9:25 AM, Vinay Gakkhar. vgakk...@yahoo.co.ukwrote: Dear knowledgeable members of the forum, Using PlotShapes, I want to show through up down arrows of different colors the point when a buy or sell candlestick

Re: [amibroker] Re: Scan / Exploration of Intraday data.

2010-03-09 Thread Prashanth
Hello, Go to Database Settings and set Base Time Interval to 1 Minute or any other Time Frame. Cheers Prashanth - Original Message - From: jollypollyanna To: amibroker@yahoogroups.com Sent: Tuesday, March 09, 2010 19:45 PM Subject: [amibroker] Re: Scan / Exploration

Re: [amibroker] Scan / Exploration of Intraday data.

2010-03-09 Thread Prashanth
Hello, In Automatic Analysis, click on Settings and change Periodicty to Intraday time frame. Cheers Prashanth - Original Message - From: jollypollyanna jollypolly...@yahoo.com To: amibroker@yahoogroups.com Sent: Tuesday, March 09, 2010 15:16 PM Subject: [amibroker] Scan

Re: [amibroker] HELP ON DDE UNIVERSAL DATA PLUG-IN

2010-03-09 Thread Prashanth
Hello, Are you certain that you have correctly configured the DDE setup? Depending upon data source, DDE setup will change. What is the data source from which you are trying to have a DDE connection. Cheers Prashanth - Original Message - From: Rasheed M rashmo...@yahoo.com

Re: [amibroker] HELP NEEDED ON MINUTES HOUR CHARTS

2010-03-05 Thread Prashanth
Hello, File - Database Settings Here change ase Time Interval to any Intraday time frame you need. Cheers Prashanth - Original Message - From: Rasheed M rashmo...@yahoo.com To: amibroker@yahoogroups.com Sent: Saturday, March 06, 2010 6:23 AM Subject: [amibroker] HELP NEEDED ON MINUTES

Re: [amibroker] HELP NEEDED ON MINUTES HOUR CHARTS

2010-03-05 Thread Prashanth
Right Click in the Real Time Window and Select Add Symbol For more help on Realtime, to Help and type Realtime. Cheers Prashanth - Original Message - From: Rasheed Momoh To: amibroker@yahoogroups.com Sent: Saturday, March 06, 2010 7:14 AM Subject: Re: [amibroker] HELP

[amibroker] Change Color based on Signal

2010-02-21 Thread Prashanth K
but could not achieve what I desired to do. If any one has ideas about how to go about it, it would be very helpful for me. Thanks in Advance Regards Prashanth

Re: [amibroker] clean up wrong symbols from the database

2010-02-08 Thread Prashanth
Hello, If you have the ticker list for the symbols (with the ,), import the tickers into a Watchlist. The using Symbols - Organize Assignments - Watchlist, select the watchlist stocks and press Delete. This shall remove all the invalid tickers in one go. Cheers Prashanth - Original

Re: [amibroker] A computer science related question on the AFL Language

2010-01-09 Thread Prashanth
. For those who like to use more tools, ADK is always there to use and create outside of AB what they desire to achieve. Cheers Prashanth - Original Message - From: Potato Soup To: AmiBroker (Discussion List) Sent: Saturday, January 09, 2010 19:15 PM Subject: Re: [amibroker

Re: [amibroker] Missing library file

2010-01-04 Thread Prashanth K
http://www.ascentive.com/support/new/support_dll.phtml?dllname=STDOLE2.TLB http://www.ascentive.com/support/new/support_dll.phtml?dllname=STDOLE2.TLB Cheers Prashanth On Mon, Jan 4, 2010 at 2:29 PM, reinsley reins...@yahoo.fr wrote: Hi, I met once this error under XL 2003. I installed all

Re: [amibroker] HIGH1=hhv(h,30)

2009-12-27 Thread Prashanth
Hello, H1=HHV(H,30); LB = ValueWhen(H==H1,Low); Filter = 1; AddColumn(H,H); AddColumn(LB,L); Cheers Prashanth - Original Message - From: nifty46 nift...@yahoo.com To: amibroker@yahoogroups.com Sent: Sunday, December 27, 2009 18:52 PM Subject: [amibroker] HIGH1=hhv(h,30) Respected

Re: [amibroker] Is backtesting in minute or minute based intervals not possible?

2009-12-27 Thread Prashanth
Hello, In you Database Settings, the current periodicity is hourly. Change that to 1-Minute and you shall get that option. Cheers Prashanth - Original Message - From: Potato Soup To: amibroker@yahoogroups.com Sent: Monday, December 28, 2009 6:52 AM Subject: [amibroker

Re: [amibroker] [Fwd: Error:Andrew Pitchfork ??]

2009-12-26 Thread Prashanth
use. Cheers Prashanth - Original Message - From: Asis Ghosh To: amibroker@yahoogroups.com Sent: Saturday, December 26, 2009 18:17 PM Subject: [amibroker] [Fwd: Error:Andrew Pitchfork ??] Original Message Subject: Error:Andrew Pitchfork ?? Date

Re: [amibroker] Against All Odds

2009-12-24 Thread Prashanth
At a couple of places, it uses Stoch instead of either StochD or StochK. Modify the same and the formula shall work ok. Cheers Prashanth - Original Message - From: Bob Waits To: amibroker@yahoogroups.com Sent: Friday, December 25, 2009 8:33 AM Subject: [amibroker] Against

[amibroker] Plottext Question

2009-12-15 Thread Prashanth
= Sell Mode, etc. Thanks in Advance. Regards Prashanth

Re: [amibroker] AFL FOR FRACTALS/ALLIGATORS:

2009-12-09 Thread Prashanth
You are with a version that is more than 3 years old. Upgrade if you are interested in using AFL's such as these else stick with one's that work on that version. Cheers Prashanth - Original Message - From: Asis Ghosh To: amibroker@yahoogroups.com Sent: Wednesday, December 09

Re: [amibroker] Trimming yahoo data bars from abnormally long to reasonable size-How can we ?

2009-12-05 Thread Prashanth
Since its a data problem, you will need to manually look and modify the concerned bar (in lowest time frame that you have data in). Hence, if you are having 1 Minute Data, a single minute will be the cause which you have to see and delete / modify. Cheers Prashanth - Original Message

Re: [amibroker] MCX DATA FEEDING AND HOW IT USEFUL IN STUDY

2009-12-04 Thread Prashanth
Hello, EOD Data is available at www.desitradermall.com for MCX NCDEX. Futures are denoted with -I (for current month) and keeps rolling as current month expires and new month contact takes its place. Cheers Prashanth - Original Message - From: dharmendra kalal To: amibroker

Re: [amibroker] Re: Three Line Break Chart [1 Attachment]

2009-11-29 Thread Prashanth
Same is attached Cheers Prashanth - Original Message - From: Amruta Patil To: amibroker@yahoogroups.com Sent: Friday, November 27, 2009 19:23 PM Subject: [amibroker] Re: Three Line Break Chart Hi, How can I get Three Line Break chart in AmiBroker? Waiting

Re: [amibroker] pl, help me to provide code

2009-11-27 Thread Prashanth
Plot((Sum(C,5)/5),Average, colorAqua, styleLine); Cheers Prashanth - Original Message - From: prasantaroy36 prasantaro...@yahoo.com To: amibroker@yahoogroups.com Sent: Friday, November 27, 2009 22:35 PM Subject: [amibroker] pl, help me to provide code Dear Friends, I want last 5

Re: [amibroker] Limiting number of positions ( contracts)

2009-11-26 Thread Prashanth
size is for Nifty, has to be changed if required for Individual Stocks / other Indices Cheers Prashanth - Original Message - From: Deepak Patade To: amibroker@yahoogroups.com Sent: Tuesday, November 24, 2009 16:44 PM Subject: [amibroker] Limiting number of positions ( contracts

Re: [amibroker] Advancing Stocks Scan or Exploration

2009-11-20 Thread Prashanth
(Ref(Close, -1) - Close 0, 1, 0), ~Dec, X ); Cheers Prashanth - Original Message - From: Alan Northam a...@thenorthams.us To: amibroker@yahoogroups.com Sent: Friday, November 20, 2009 20:30 PM Subject: [amibroker] Advancing Stocks Scan or Exploration I am new to writing Scans

Re: [amibroker] Any way to change the text in a tab?

2009-11-19 Thread Prashanth
You can rename the Sheets to the timeframe the sheets carry. So, instead of Sheet 1, it can be Hourly or 30 Mins, etc. You can use the Tabs to have different stocks with same sheets replicated there too. Cheers Prashanth - Original Message - From: Deepak Patade To: amibroker

Re: [amibroker] License Error please help

2009-11-13 Thread Prashanth K
Write to SUPPORT {at} amibroker.com cheers Prashanth On Fri, Nov 13, 2009 at 8:34 PM, khaleel indbe...@gmail.com wrote: When i try to launch Amibroker v5.29 i am getting this error message License Error (please contact supp...@amibroker.com). can some body help me Thanx much inadvance

Re: [amibroker] symbol

2009-10-30 Thread Prashanth
Hello, Has happened to me a couple of times. Not sure about reason. Just create a new default chart (on Menu Bar File- New - Default Chart) and it will work ok. You can then close the current chart. Cheers Prashanth - Original Message - From: esthel2 esthe...@gmail.com To: amibroker

Re: [amibroker] Bug Report Procedure

2009-10-25 Thread Prashanth
Hello, This is what TJ wrote in July of this year, Due to tremendous amount of spam/advertising we were receiving at bugs at amibroker dot com address, it has been deactivated. Please send any bug reports directly to support instead. Thank you for your co-operation. Cheers Prashanth

Re: [amibroker] Problem with MA200 ???

2009-10-13 Thread Prashanth
Its because, the value is much higher than current value. Use StylenoLine to show the value without the line getting drawn if you are comfortable with having only value without requiring a line. Cheers Prashanth - Original Message - From: Yves To: amibroker@yahoogroups.com

Re: [amibroker] Cross Hairs

2009-10-13 Thread Prashanth
Price Date / Time is displayed on the status bar below. X axis shows the Date and Time (if its intraday) and Y axis shows teh price. Cheers Prashanth - Original Message - From: markbouri...@sbcglobal.net To: amibroker@yahoogroups.com Sent: Monday, October 12, 2009 07:34 Subject

Re: [amibroker] Market profile, Value Area, POC etc [1 Attachment]

2009-10-12 Thread Prashanth
It requires registration. AFL is attached herewith. Cheers Prashanth - Original Message - From: Ton Sieverding To: amibroker@yahoogroups.com Sent: Monday, October 12, 2009 17:51 Subject: Re: [amibroker] Market profile, Value Area, POC etc Ed what does this mean

Re: [amibroker] Filter for the time of the last bar

2009-09-30 Thread Prashanth K
function. Cheers Prashanth On Wed, Sep 30, 2009 at 12:27 PM, Vinay Gakkhar. vgakk...@yahoo.co.ukwrote: Is it possible to set up a filter for the time of the last bar? I want my filter to show only those results where the last bar was during the last 1 minute. If this is possible, can

Re: [amibroker] Quotations editor question

2009-09-29 Thread Prashanth
Hello, From Menu Bar, try Edit - Delete Quotation (mark the bar which you want to delete in the lowest timeframe that the data is available). If data is in tick, your chart too should be in tick period. Cheers Prashanth - Original Message - From: cvanhaesendonck carl@scarlet.be

Re: [amibroker] Alertif help

2009-09-25 Thread Prashanth
Hello Vinay, In Automatic Analysis, have you checked for All Symbols? Cheers Prashanth - Original Message - From: Vinay Gakkhar. To: Amibroker Sent: Friday, September 25, 2009 21:01 Subject: [amibroker] Alertif help Dear Tomasz, I have posted this problem many times

Re: [amibroker] Plot arrows

2009-09-19 Thread Prashanth
This works for me, shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) ); Cheers Prashanth - Original Message - From: ct1942 ct1...@yahoo.com To: amibroker@yahoogroups.com Sent: Sunday, September 20, 2009

Re: [amibroker] Re: Plot arrows

2009-09-19 Thread Prashanth
above the candles. --- In amibroker@yahoogroups.com, Prashanth prash454...@... wrote: This works for me, shape = Buy * shapeUpArrow + Sell * shapeDownArrow; PlotShapes( shape, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, Low, High ) ); Cheers Prashanth - Original Message

Re: [amibroker] Re: Plot arrows [1 Attachment]

2009-09-19 Thread Prashanth
); AddColumn( Volume, Volume ); PlotShapes(IIf(Buy, shapeUpArrow , shapeNone), colorBrightGreen, 0, Low, Offset=-15); Thanks +--- In amibroker@yahoogroups.com, Prashanth prash454...@... wrote: What about adding this before that, SetChartOptions(0,chartShowArrows

Re: [amibroker] Re: AmiBroker 5.27.1 ALPHA released

2009-08-04 Thread Prashanth K
It works fine for me now. I un-installed AB, then installed a full version of 5.20 and then 5.27.1 and other than Keyboard Shortcuts, don't seem to have lost anything. Cheers Prashanth On Tue, Aug 4, 2009 at 12:43 PM, sidhartha70 sidharth...@yahoo.com wrote: TJ, Sorry if I'm wrong here

Re: [amibroker] Re: AmiBroker 5.27.0 ALPHA released

2009-08-03 Thread Prashanth
charts are displaying fine while the problem exists with tickers having intra-day data. Cheers Prashanth - Original Message - From: sidhartha70 sidharth...@yahoo.com To: amibroker@yahoogroups.com Sent: Monday, August 03, 2009 15:37 Subject: [amibroker] Re: AmiBroker 5.27.0 ALPHA released

Re: [amibroker] CSV to ASCII CONVERTER?

2009-07-31 Thread Prashanth
You can import csv files into Amibroker easily. Refer files section of yahoo group BSE-NSE2005 for details on how to import. Cheers Prashanth - Original Message - From: dharmendra kalal To: amibroker@yahoogroups.com Sent: Saturday, August 01, 2009 09:30 Subject: [amibroker

Re: [amibroker] Re: Most Used Code

2009-06-26 Thread Prashanth
Code check Profile (Under Tools Menu in Formula Editor) function available in AB. Not sure which version it was introduced, but provies complete details abotu parameters / arrays, etc used and time consumed by each. Cheers Prashanth - Original Message - From: gmorlosky gmorlo

Re: [amibroker] data conversion .

2009-06-23 Thread Prashanth
Natasha, Graham has provided a Intraday data Export AFL which is available in the Library. Cheers Prashanth - Original Message - From: Natasha ~~!!! To: amibroker@yahoogroups.com Sent: Wednesday, June 24, 2009 00:05 Subject: [amibroker] data conversion

Re: [amibroker] AFL Editing

2009-06-21 Thread Prashanth
You have the Insert Button eanbled on your Keyboard. Just press it once and it should not replace. Cheers Prashanth - Original Message - From: brianw468 wil...@optusnet.com.au To: amibroker@yahoogroups.com Sent: Sunday, June 21, 2009 12:31 Subject: [amibroker] AFL Editing Hi, I'm

Re: [amibroker] help needed

2009-06-20 Thread Prashanth
Yes. Use foreign function. Cheers Prashanth - Original Message - From: Prashant Nayak pna...@darmasdar.com To: amibroker@yahoogroups.com Sent: Sunday, June 21, 2009 00:16 Subject: [amibroker] help needed Hi I am writing in ref. to indian market, but i think poeple here can help me

Re: [amibroker] Re: Camarilla System- Help Needed

2009-04-30 Thread Prashanth
Hello, Check the settings. The formula does work without any errors. Cheers Prashanth - Original Message - From: Soham soham...@yahoo.co.in To: amibroker@yahoogroups.com Sent: Thursday, April 30, 2009 10:01 Subject: [amibroker] Re: Camarilla System- Help Needed Thomas, It still

Re: [amibroker] some help needed

2009-04-19 Thread Prashanth
Prashanth - Original Message - From: dharmendra kalal To: amibroker@yahoogroups.com Sent: Saturday, April 18, 2009 12:41 Subject: [amibroker] some help needed Pls help me as m new for amibroker pls tell me how to import nse .nse fo n bse data in amibroker n where

Re: [amibroker] Re: NotePad Plus

2009-04-13 Thread Prashanth
Tools Customize - Keyboard Cheers Prashanth - Original Message - From: Radek Simcik To: amibroker@yahoogroups.com Sent: Tuesday, April 14, 2009 09:33 Subject: Re: [amibroker] Re: NotePad Plus Hi all, strange but I do not have Keyboard tab in my AB 5.2 Standard

Re: [amibroker] How can I get AB to plot a green/red dot after direction change MA? (AFL quest.)

2009-04-08 Thread Prashanth
Hello, Line = Close; AA = MA(C,192) + MA(C,64); Plot(Line,MA Sum, IIf(AA Ref(AA,-1), colorGreen, colorRed), styleLine, styleThick); Cheers Prashanth - Original Message - From: samu_trading samu_trad...@yahoo.com To: amibroker@yahoogroups.com Sent: Thursday, April 09, 2009 08:33

Re: [amibroker] Background Color

2009-04-06 Thread Prashanth
Is this what you are looking for? TimeFrameSet(inDaily); rsa=RSI(3); TimeFrameRestore(); ra=TimeFrameExpand(rsa, inDaily); Plot(ra,ra, IIf(ra90, colorDarkGrey,colorYellow), styleCloud); Cheers Prashanth

Re: [amibroker] running scan

2009-04-06 Thread Prashanth
You have to run it first manually. Next run is automatic depending upon the timeframe you have set. Cheers Prashanth - Original Message - From: jim fenster To: amibroker@yahoogroups.com Sent: Tuesday, April 07, 2009 08:34 Subject: [amibroker] running scan if I

Re: [amibroker] Yahoo becoming too unreliable for this group...?

2009-03-21 Thread Prashanth
work through these issues in an effort to improve your experience on Yahoo! Groups. Melissa Daniels Yahoo! Community Manager Cheers Prashanth - Original Message - From: sidhartha70 sidharth...@yahoo.com To: amibroker@yahoogroups.com Sent: Saturday, March 21, 2009 23:33 Subject

Re: [amibroker] no signal arrows in backtesting mode

2009-03-11 Thread Prashanth
Hello, Right Click on chart and under Axis and Grid - Miscellaneous make sure Show Trading Arrows is set to Yes. Double clicking on results now shall show the arrows on chart. Cheers Prashanth - Original Message - From: bigitop doctormu...@gmail.com To: amibroker@yahoogroups.com

Re: [amibroker] Date format in AB to European?

2008-12-12 Thread Prashanth
Change the Date format in Windows Regional Settings. Cheers Prashanth - Original Message - From: jydejyde c...@jyde.co.uk To: amibroker@yahoogroups.com Sent: Saturday, December 13, 2008 07:05 Subject: [amibroker] Date format in AB to European? Can't seem to find this anywhere

Re: [amibroker] Re: Alerts

2008-12-08 Thread Prashanth
If formula is loaded into AA and filter (for number of Stocks using say Watchlist) is set and you run it automatically, all Alerts shall be notified as and when it gets triggered. You do not need to have the respective charts open. Cheers Prashanth - Original Message - From: Tim [EMAIL

Re: [amibroker] Re: Alerts

2008-12-07 Thread Prashanth
Hello Tim, Could you or GP please upload the same here in the Files section. Aussie Stock Forums does not accept free web based email services for registration in that forum. Cheers Prashanth - Original Message - From: Tim [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Monday

Re: [amibroker] Help please

2008-11-04 Thread Prashanth
Hello, Buy Conditions: EMA(C,13)EMA(EMA(C,13),9) means Condition for Buy is Cross of 13 EMA by a smoothened EMA of 13 by 9. Cross (C,Peak(C,5,1)); Crossover of Close over Peak of Highest Close from 5 Days. Sell Conditions Reverse of 1st Condition of Buy. Cheers Prashanth - Original

Re: [amibroker] export minute data

2008-11-04 Thread Prashanth
Hello, Check out Graham's formula in the Amibroker Formula Section. http://www.amibroker.com/library/formula.php?id=327 Cheers Prashanth - Original Message - From: optiontrader6 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Tuesday, November 04, 2008 13:30 Subject: [amibroker

Re: [amibroker] Analyze all stock symbols at endof day

2008-10-09 Thread Prashanth
Hello, Use AddtoWatchlist() syntax to move all the Buy Signal symbols to a seperate Watchlist. Cheers Prashanth - Original Message - From: bhakta79 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday, October 09, 2008 12:44 Subject: [amibroker] Analyze all stock symbols

Re: [amibroker] My amibroker face trouble shooting

2008-10-09 Thread Prashanth
Use Code Check Profile function in Formula Editor to check whether your formula looks into the future. Cheers Prashanth - Original Message - From: VenkatRamanan [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday, October 09, 2008 21:34 Subject: [amibroker] My amibroker

Re: [amibroker] Help in Fine tuning EMA cross over

2008-10-07 Thread Prashanth
Hello, Buy = Cross(EMA(C,13), EMA(C,21)) AND (EMA(C,100) MA(C,100)); Sell = Cross(EMA(C,21), EMA(C,13)) AND (EMA(C,100) MA(C,100)); Cheers Prashanth - Original Message - From: mravie7 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Tuesday, October 07, 2008 19:33 Subject

Re: [amibroker] Re: Amibroker - QuoteTracker Intraday data setting - HELP PLEASE

2008-10-04 Thread Prashanth
Hello, In QT, on the Top Pane, you have Advertisements which have to be clicked periodically to enable a smooth updation of data. A way out would be to purchase from QT for a monthly fee. Cheers Prashanth - Original Message - From: SUHAS PATKAR [EMAIL PROTECTED] To: amibroker

Re: [amibroker] I need little help

2008-09-13 Thread Prashanth
AddColumn(IIf(Result 0 ,AA, AB),Column4); Add the above syntax and you should get the required. Cheers Prashanth - Original Message - From: Vinay Gakkhar. [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Saturday, September 13, 2008 12:20 Subject: Re: [amibroker] I need little

Re: [amibroker] I need little help

2008-09-13 Thread Prashanth
Did it work ? I forgot to include this , AA = TargetA - Result; AB = TargetB + Result; Am attaching the AFL just in case. Cheers Prashanth - Original Message - From: Vinay Gakkhar. [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Saturday, September 13, 2008 19:29 Subject

Re: [amibroker] I need little help

2008-09-12 Thread Prashanth
You can use IIf condition. To get a AFL itself, it would be helpfull if you can provide your AFL so that required modifications can be done on the same. Cheers Prashanth - Original Message - From: Vinay Gakkhar. [EMAIL PROTECTED] To: Amibroker amibroker@yahoogroups.com Sent: Saturday

Re: [amibroker] can't post

2008-09-11 Thread Prashanth
Hello, The first post of any member is moderated and hence takes some time for approval. After that, there is no approval needed and all posts are directly sent to the board. Cheers Prashanth - Original Message - From: Ray Johnson To: amibroker@yahoogroups.com Sent: Friday

Re: [amibroker] AmiBroker 5.17.0 BETA released

2008-09-09 Thread Prashanth
Hllo Tj, I am facing the same problem. If I click on either BackTest or Individual Backtest after selecting Apply to Current Symbol, it runs the backtest on the First Symbol of the Database ir-respective of which ticker is currently displayed. Regards. Prashanth - Original Message

Re: [amibroker] AmiBroker 5.17.0 BETA released

2008-09-09 Thread Prashanth
That was super-fast :) Thanks Prashanth - Original Message - From: Tomasz Janeczko [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Tuesday, September 09, 2008 23:14 Subject: Re: [amibroker] AmiBroker 5.17.0 BETA released Hello, This is now fixed. CHANGES IN VERSION

Re: [amibroker] how to use this formula for eod how to find next day buy sell signal help me

2008-09-03 Thread Prashanth
Seems like Multiple Number of Formulas merged. What should really trigger a Buy / Sell Cheers Prashanth - Original Message - From: vin [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Wednesday, September 03, 2008 17:28 Subject: [amibroker] how to use this formula for eod how

Re: [amibroker] RT DATA for AB users in India

2008-08-12 Thread Prashanth
Hello, Check out http://www.spidersoftwareindia.com/ Haven't tried it out, but on site it says it supports DDE. Other major providers here are http://www.viratechindia.com http://www.technicaltrends.com Cheers Prashanth - Original Message - From: Rakesh Sahgal To: Amibroker

Re: [amibroker] Amiquote question

2008-07-30 Thread Prashanth
In Menu, click on Tools - Customize -Tools - New In Command Select AmiQuote Example:mC:\Program Files\AmiBroker\AmiQuote\Quote.exe In Arguments, Enter /autoupdate Cheers Prashanth - Original Message - From: danielwardadams [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent

Re: [amibroker] Re: Deleting zero volume quotes

2008-06-07 Thread Prashanth
Hello, A simpler thing would be to use Quote Editor to sort the quotes and then delete all those having Zero. Cheers Prashanth - Original Message - From: bvpraveenmails [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Sunday, June 08, 2008 10:20 AM Subject: [amibroker] Re

Re: [amibroker] Can you please help me with this?

2008-06-05 Thread Prashanth
rather than simply calculating the difference of dates. Cheers Prashanth - Original Message - From: Vinay Gakkhar. [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday, June 05, 2008 6:59 PM Subject: [amibroker] Can you please help me with this? Yes, that's almost right

Re: [amibroker] Dear Prashanth,

2008-06-02 Thread Prashanth
and then calculating the difference in dates. I believe its possible to code what you are looking for, though it gets bit complicated (at least for me). Cheers Prashanth PS: Please don't address posts to me (when posting to groups) specifically since there are a lot of guys who are better equiped to handle

Re: [amibroker] Data import in Metastock Format for Eod

2008-06-02 Thread Prashanth
Hello, Have you read this, http://www.amibroker.com/guide/h_esignal.html and this http://www.amibroker.com/guide/h_extsources.html Cheers Prashanth - Original Message - From: ns1953_2000 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Saturday, May 31, 2008 7:26 PM Subject

[amibroker] Highest Value btw 2 days

2008-05-30 Thread Prashanth
,Daysinmonth); Freturnvalue=IIf(Daysinmonthfinal-Day()24 AND DayOfWeek()==5,C,0); return Freturnvalue; } Regards Prashanth

Re: [amibroker] how to get list of open high low close

2008-05-21 Thread Prashanth
Hello, Use Addcolumn(Ref(Open, -1), yesterday); Addcolumn(Ref(Open, -2) , the day before yesterday); Repeat for other variables. Cheers Prashanth - Original Message - From: mahest72 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Wednesday, May 21, 2008 10:46 PM Subject

Re: [amibroker] Plotting ema of 1min data into hourly Chart

2008-05-16 Thread Prashanth
Hello, Corrected AFL is attached herewith. Cheers Prashanth - Original Message - From: Debdulal Bhattacharyya [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, May 16, 2008 11:21 PM Subject: [amibroker] Plotting ema of 1min data into hourly Chart hi all , I am facing

Re: [amibroker] OT: Need Back Issues

2008-05-11 Thread Prashanth
Hello, You can download the same from here http://www.4shared.com/file/47168789/25f598c2/EMagazine.html Cheers Prashanth - Original Message - From: marketmonk777 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Sunday, May 11, 2008 10:01 AM Subject: [amibroker] OT: Need Back

Re: [amibroker] Trouble with 5.09 Beta?

2008-05-03 Thread Prashanth
Hello Lal, I too am facing the same problem. Wrote to support, but havent been able to get it resolved. If you could list out the steps taken by you, I can try out the same. FYI, I did request a new copy of ABReg.exe but was not of much help either. Thanks Prashanth - Original Message

Re: [amibroker] Mass export OHLC values from multiple symbols

2008-04-05 Thread Prashanth
Hello, Attached is a code by Graham. Modification should allow you to export Weekly Data. Cheers Prashanth - Original Message - From: dralexchambers [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Saturday, April 05, 2008 8:01 PM Subject: [amibroker] Mass export OHLC values from

Re: [amibroker] 3rd party addons link

2008-03-25 Thread Prashanth
This works http://www.amibroker.org/3rdparty/ Cheers Prashanth - Original Message - From: James To: amibroker@yahoogroups.com Sent: Wednesday, March 26, 2008 7:27 AM Subject: [amibroker] 3rd party addons link Does anyone know the correct link for the 3rd party add-ons

Re: [amibroker] plotText

2008-03-21 Thread Prashanth
You need 2 co-ordinates.Also, close is a Reserved word, use Example for example :) Cheers Prashanth - Original Message - From: KBH To: amibroker@yahoogroups.com Sent: Friday, March 21, 2008 2:37 PM Subject: [amibroker] plotText I Have been trying to plot text and keep

Re: [amibroker] Re: please chek this simple afl i m getting no results

2008-03-20 Thread Prashanth
Check this out, TimeFrameSet(inDaily); Buy=Close Ref(HHV(Close,1),-1); Sell=Close Ref(HHV(Close,1),-1); Filter=1; AddColumn( Close, Close); TimeFrameRestore(); Cheers Prashanth - Original Message - From: mahest72 [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday

Re: [amibroker] intraday afl , need help

2008-03-14 Thread Prashanth
Hello, First you need to check as to whether you have Intra-day Data. If you have, in Automatic Analysis, click on Settings and here change Periodicity to 1 Minute or the Time Frame for the data you have. Cheers Prashanth - Original Message - From: mahest72 [EMAIL PROTECTED

Re: [amibroker] I'.m new to amibroker

2008-03-06 Thread Prashanth
Hello Sandeep, You can find AmiBroker software on www.amibroker.com Data is available Free from Yahoo and also a yahoo group called BSE-NSE2005 Cheers Prashanth - Original Message - From: aron_aran [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Thursday, March 06, 2008 7:24

Re: [amibroker] Invert code

2008-03-04 Thread Prashanth
if( ParamToggle(Upside-down ?, No|Yes ) ) GraphXSpace =-100; Cheers Prashanth - Original Message - From: Kendall Bruce Hawkins To: amibroker@yahoogroups.com Sent: Tuesday, March 04, 2008 1:34 PM Subject: [amibroker] Invert code How can I get this code to invert what

  1   2   3   >