[amibroker] Re: Crosshair

2009-07-23 Thread miche1a
I can't believe I am alone to have this problem (or see that as a problem) Michel G --- In amibroker@yahoogroups.com, Michel Guibert michel...@... wrote: Hi When I show 2 graphs of different periods (5mn and 15 mn in exemple) is there a way to show moving crosshair on both

[amibroker] Spreadsheet

2009-03-29 Thread miche1a
Hi I follow about 60 stocks , is it possible to represent them like a spreadsheet with differents time frame For exemple: I want the first column with the ticker the other collums are with a background of different colors. col2 RSI value in 5 minutes , green if up , red if down, yellow if flat

[amibroker] Re: Metastock Scan

2009-01-08 Thread miche1a
--- In amibroker@yahoogroups.com, ct1942 ct1...@... wrote: Does anyone have a script that will transfer Amibroker databases over to Metasock. If so, do you mind sending me a copy. thanks Cordell Maybe a better idea to have a metastock database and read it with amibroker , so you can

[amibroker] 24 hours a day vs daytime only

2008-07-25 Thread miche1a
Hi If you go in View…Intraday , you can select if you want to see 24 hours , day only , night only, day and night…etc… If I have a 24 hours a day database and want to make different calculation for an indicator, what is the code to select day only, day and night etc…. Thank's Michael

[amibroker] Re: Four Hours Time Frame In Coding

2008-04-02 Thread miche1a
in240mn=240*60; Timeframeset (in240mn); It's what I will use... --- In amibroker@yahoogroups.com, Mohammed [EMAIL PROTECTED] wrote: Hi, I would like to use 4 Hours Time frame in the coding. Any one can please help. Currently I'm using this for one Hour. Time = inHourly;

[amibroker] Re: Jacob support

2008-02-25 Thread miche1a
Should I believe my code has no problem ?? I don't think so and any help will be appreciate Thank's MG --- In amibroker@yahoogroups.com, miche1a [EMAIL PROTECTED] wrote: Hi I want to draw jacob support on an intraday graph The formula is based on previous day daily data and is High2

[amibroker] Jacob support

2008-02-22 Thread miche1a
Hi I want to draw jacob support on an intraday graph The formula is based on previous day daily data and is High2 = Average + High1 - Low1 High1 = 2*Average - Low Average = (High + Low + Close)/3 Low1 = 2*Average - High Low2 = Average + Low1 - High1 I Wrote this formula (sorry but I am a rookie