[amibroker] Re: Help with formula

2010-01-26 Thread mytakeismine
You guys totally missed it... This came from whom I believe is the best coder and most elegant of writers. Graham is not as available as he once was, but this guy is the MAN. What he wrote in ONE LINE was your whole program!!! Do a search and learn from the master grasshopper. (completely tongue

[amibroker] Re: REQUIRED AFL

2009-12-08 Thread mytakeismine
Nice reply... you are a twisted technut! Thanks and to this group of Pros. --- In amibroker@yahoogroups.com, "de_techneut" wrote: > > Userfriendly = Param("User Friendly Variable",1,1,50,1); > periods = Param( "Periods", 15, 1, 200, 1 ); > Ksmooth = Param( "%K avg", 3, 1, 200, 1 ); > Dsmooth = P

[amibroker] Re: Yahoo data

2009-10-22 Thread mytakeismine
wavemechanic on their site it says "various internet sources (Yahoo, MSN)" can you add to that list ie. google, advFn? Also between the 2 that they offer, Yahoo and MSN, is there a speed difference or better accuracy with one over the other? --- In amibroker@yahoogroups.com, "wavemechan

[amibroker] Re: DLL Tutorial

2009-07-30 Thread mytakeismine
Herman I tried to download and norton kicked in... MH690 aka Win32.Hupigon? Any thoughts or has any one else had this?

[amibroker] Re: DLL Tutorial

2009-07-30 Thread mytakeismine
Herman I tried to download and norton kicked in... MH690 aka Win32.Hupigon? Any thoughts or has any one else had this?

[amibroker] Ocean Theory

2009-06-29 Thread mytakeismine
Hi is anyone familiar with Jim Sloman's Ocean Theory? http://www.mayyoubehappy.com/oceanbook.html

[amibroker] Re: www.aflwriting.com

2009-03-08 Thread mytakeismine
If I can jump in here... I have to say I have had Graham write for me and have seen his work, this mans work is astounding!!! 5 star!! I have watched pepole take 200 line of code and condense to 35 and then watched him condense to 5 lines! Elegant! I also found him reasonable, with that said I t

[amibroker] Re: Security filter based on interest rates Howard Bandy

2009-02-09 Thread mytakeismine
Howard Hello, I came across this message in a search (I have one of your books) and I never knew that you were involved with Indigo... what was that like and how many people worked on writing for a program like that? I will only ask this question with the thought that the program is dead? copy

[amibroker] Re: Extra Fundamental data fields

2008-11-09 Thread mytakeismine
think they are as important as EPS or P/S. Thanks Kim J --- In amibroker@yahoogroups.com, "mytakeismine" <[EMAIL PROTECTED]> wrote: > > Hi can any one answer whether it is possible to get additional data > outside of the 4.9 data fields. From the Yahoo Analysts page

[amibroker] Extra Fundamental data fields

2008-11-08 Thread mytakeismine
Hi can any one answer whether it is possible to get additional data outside of the 4.9 data fields. From the Yahoo Analysts page i.e. Growth Estimates; this year, next year and next 5 yrs per annum. Thank You Kim J

[amibroker] Anthony RE: EW

2008-03-06 Thread mytakeismine
Anthony All I see is a red zig line... the rest isn't plotting? Sounds like wavemechanic is seeing the same!!?? thanks kj ps what are you seeing

[amibroker] Re: no amibroker book?

2008-02-08 Thread mytakeismine
Lloyd I agree with you and Brian, however, I am not so sure that Tomasz could actually write it in such a way that a novice/ beginner could digest. Not to take anything away from the man he is brilliant in design and at what he does best. With all that said there is a need... I bought Howards

[amibroker] Re: Graham is great

2008-01-21 Thread mytakeismine
helpful to others with our own talents . Thanks Graham. mytakeismine kj --- In amibroker@yahoogroups.com, "dawsonsg" <[EMAIL PROTECTED]> wrote: > > Hi Guys, > > Sorry I asked the question about scans/explorations, I wont be doing > that in a hurry again. I

[amibroker] Re: Why not thanks Herman

2008-01-14 Thread mytakeismine
Herman Thanks something as easy as that. Yes by removing the "//" bars my arrows are acting better:) I'm not yet familiar with what the differance is with "quick-afl" and the regular but I will read up. However in the AA explorer their only going back 1215 bars and not to the end? (as far as t

[amibroker] Re: Why not

2008-01-14 Thread mytakeismine
rBar = BarCount- 1. Not Ok, so it fires through the whole range but only looks at the last date as a pivot? > I don't know what the rest of the code is doing, but that would make > curBar a fairly redundant variable. > > Regards, > GP > > > --- In amibroker@yaho

[amibroker] Why not

2008-01-13 Thread mytakeismine
Hi, need a little help or an explanation. While using one of the Zig Zag afl's (GordonWrose)in the AA explorer I wasn't getting what I wanted when I realized that I was only looking at 120 days? nNumBarsToScan = 120; if (curBar >= nNumBarsToScan ) { for (i=0; i

[amibroker] Re: Problem viewing indicator values?

2008-01-11 Thread mytakeismine
j --- In amibroker@yahoogroups.com, "mytakeismine" <[EMAIL PROTECTED]> wrote: > > Bill > you may want to read up on "GraphXSpace", you will find it in the > help or user guide just not under index. Do a search for it... In the > mean time put this at the end

[amibroker] Re: Problem viewing indicator values?

2008-01-11 Thread mytakeismine
Bill you may want to read up on "GraphXSpace", you will find it in the help or user guide just not under index. Do a search for it... In the mean time put this at the end of your code in the indicator. GraphXSpace = 25; Hope it helps kj --- In amibroker@yahoogroups.com, "Ara Kaloiustian" <[

[amibroker] Re: help needed on adx coding.

2007-12-01 Thread mytakeismine
Prashant have you seen this? +di will cross -di, Turquoise crosses Pink //Trend Following Systems DO NOT work when ADX is Below 20 - Tech Analysis A-Z; page 120 P1 = Param("Period",10,0,100,1); MyPDI= PDI(P1);//Positive Directional Indicator MyMDI= MDI(P1);//Negative Directional Indicator (Minu

[amibroker] Re: The difference between

2007-11-28 Thread mytakeismine
icators > > Bill > > ----- Original Message - > From: "mytakeismine" <[EMAIL PROTECTED]> > To: > Sent: Wednesday, November 28, 2007 1:10 AM > Subject: [amibroker] The difference between > > > > Can someone explain to me MACD an

[amibroker] The difference between

2007-11-27 Thread mytakeismine
Can someone explain to me MACD and Signal. (Which are found in SetBarFillColor.) ie. //Graph0=1000*MACD(12,26); //Graph0=1000*Signal(12,26,9); In the user's guide "Signal" = "Calculates the Signal line of MACD indicator" Is this to say that signal, in this example, is a 9 day MA line of the MAC

[amibroker] Re: Suggestions for book introducing new users to AmiBroker

2007-09-06 Thread mytakeismine
Hi Howard I am looking forward to your book for any help, my hang-up is with writing basic AFL for indicators. My understanding and comprehension is shy of my desire or what I want to do is beyond my capabilities (well that sums up my life). I have read and reread but I still feel I'm missing c

[amibroker] Re: Setting timeframe for chart in AFL?

2007-07-30 Thread mytakeismine
Markus I too am interested in using the same! Anyone? --- In amibroker@yahoogroups.com, "markhoff" <[EMAIL PROTECTED]> wrote: > > > Hello, > > is there any possibility to set the timeframe (barrange) which should > be displayed in the GUI for a chart by AFL code? I could not find it > out how to

[amibroker] Re: AmiBroker 4.94.0 BETA released

2007-05-04 Thread mytakeismine
all your good work. It will sink in for me at some point. Cheers Kim J mytakeismine

[amibroker] Re: Finding an API AMIBROKER COM Programmer to Link Excel SpreadSheet

2007-04-27 Thread mytakeismine
Finewine have you approached Graham, I had him write what I couldn't wrap my mind around and he did it with FLYING COLORS. Plus he is a stand up staight shooter and fair.. look how he is willing to help others need I say more. --- In amibroker@yahoogroups.com, "finewine.1953" <[EMAIL PROTECTED

[amibroker] Re: Plotting

2007-04-19 Thread mytakeismine
Thanks Graham for your reply... it just surprises me that it's this hard to overlay a one year chart over last years one year chart. I look forward to hereing from you later today on the other matter. mytakeismine Kim --- In amibroker@yahoogroups.com, Graham <[EMAIL PROTECTED

[amibroker] Plotting

2007-04-19 Thread mytakeismine
I have been trying to search for info on the X Axis and all I get is Time/Date. Can Ami graph on something other than dates for the X Axis? If so where did you find it or what should I search for? Thanks for your help mytakeismine

[amibroker] From/To dates?

2007-04-13 Thread mytakeismine
Any one know a way of pin pointing a period of time (days) in the chart window similar to equity() set to 3 uses the FROM / TO in AA. Would like to compare one range of dates to another range of dates with the same ticker in a chart window. Thanks, mytake

[amibroker] JScript/VBScript Why?

2007-04-11 Thread mytakeismine
Another newbie question. Some of the Formulas in the AFL library contain code that is written with jscript or vbscript, can someone elabarate why? Is it easer, more complete, better functions or just programmer preferance? Another words just easer to write that part of the program for them? Tha

[amibroker] Re: What's Wrong With This Line? Charles

2007-04-09 Thread mytakeismine
Chuck Hi I hope that you See this as I am going through the same thing that it appears you did. Trying to learn how to specify a start and end point in charting a specific period with out using the click of the mouse. If you haven't commited suicide and have an example to share it would grea

[amibroker] Re: Anybody using Reuters Datalink?

2007-03-20 Thread mytakeismine
Phil I have reuters and I'm transfering to quotes plus at the end of the month, I tried the free 2 weeks at quotes plus and feel that they have more to offer. Plus I always thought it was pain using their "downloader". I would hope that things have improved their however if you can compare I th

[amibroker] Re: different time frame within single pane?

2007-03-16 Thread mytakeismine
Jim, Graham Kavanagh did a nice job with a monthly chart here is where that is http://www.amibroker.com/library/formula.php?id=249 I am also new so I can't be of much more help, I am looking to do the same though at some point mytake --- In amibroker@yahoogroups.com, "goethe4110" <[EMAIL PRO

[amibroker] Re: A good book? BillBarack chime in?

2007-03-14 Thread mytakeismine
Dennis, Bill never said when it would be out but if you don't have the link here it is http://www.ftmonitor.com down the left side you will see Amibroker 101. The link as I type this is still for 4.7. Bill can you say when this will be out thanks. Dennis I'll drop you an email when I hear. m

[amibroker] Re: A good book? THANKS ALL

2007-03-12 Thread mytakeismine
ill's AB101 ver for 4.9. (Bill would you drop me a line at mytakeismine at yahoo.com when it becomes available, thanks) nhat thanks for your comments, I liked what you said about the holy grail and fitting ones self. Oh also the read watch and practice,practice, practice. dingo h

[amibroker] Re: A good book? Howard, Dingo and BillBarack

2007-03-09 Thread mytakeismine
Hi Howard, Ordered your book How long does bulk mail take to Minn. Just joking I'm looking forward to it, thanks. Dingo I'll was at there site a few weeks ago(just before convention) I'll keep checking back. And Bill if You're there, your AmiBroker 101 is it still using AB4.5 or have you updated

[amibroker] Re: A good book?

2007-03-09 Thread mytakeismine
> d > > > -Original Message- > > From: amibroker@yahoogroups.com > > [mailto:[EMAIL PROTECTED] On Behalf Of mytakeismine > > Sent: Friday, March 09, 2007 2:58 PM > > To: amibroker@yahoogroups.com > > Subject: [amibroker] Re: A good book? >

[amibroker] Re: A good book?

2007-03-09 Thread mytakeismine
nter now, and is expected to be ready for shipping the > first week of April, 2007. There is a "buy now" button on the book's web > site to place an order for it. > > Thanks, > Howard Bandy > > > On 3/8/07, mytakeismine <[EMAIL PROTECTED]> wrote: &g

[amibroker] A good book?

2007-03-08 Thread mytakeismine
Hi I'm having a tough time doing what I want with AMI. Can any one suggest a good programming book that would be similiar to AMI that would be helpfull to a newbie? Or is there any one from Minnesota that would have some time for periodic questions, I know thats asking alot! Thanks mytake

[amibroker] Re: Over riding values to plot

2007-03-07 Thread mytakeismine
I maybe using the wrong terminology "height" not how high up on the chart but the height of the ribbon. Maybe width would be better but I usually think of width as left to right. So Ribbon thickness you get my point I hope. thanks again mytake --- In amibroker@yahoogroups.com, &qu

[amibroker] Over riding values to plot

2007-03-07 Thread mytakeismine
Hi all I have this ribbon at the top of a chart, and for educational purposes could someone explain what the difference in controlling the height with the Plot( 15, (15 percent of the chart) OR varing the height by the 20 as in -605, 20) I can contol the height either way, is one way better and

[amibroker] Re: Any AB users catch the recent fall on the DOW with their scripts?

2007-03-06 Thread mytakeismine
Well I didn't start the this thread but I sure would like to thank those who came forward. I know that AMI is the best, provided your not looking for a "canned" trading system and willing to work for it, it's nice to know where Not to look. I also agree that the polls could be scewed by newbie

[amibroker] Re: Any AB users catch the recent fall on the DOW with their scripts?

2007-03-05 Thread mytakeismine
Dennis it looks as though no one wants to come forward, I too would like to know of successes with in the ami group. You don't need to share your code... maybe a little encouragement as to where you found your best advice or your favorite published indicator that you like to use. How about a "I

[amibroker] Re: Embarrassed

2007-03-01 Thread mytakeismine
Never mind I had to open a new blank chart.Still Embarrassed though --- In amibroker@yahoogroups.com, "mytakeismine" <[EMAIL PROTECTED]> wrote: > > Hi as a newbie sometimes things happen that I can't explain. > I need a little help with opening a chart pane a

[amibroker] Embarrassed

2007-03-01 Thread mytakeismine
Hi as a newbie sometimes things happen that I can't explain. I need a little help with opening a chart pane any chart pane. I click on layouts, global layouts, default and I then go to charts and click on any chart and the chart window opens. Thats what normally happens. When I want to close tha

[amibroker] Re: SetChartBkGradientFill().

2007-02-27 Thread mytakeismine
ics use Plot > > Best regards, > Tomasz Janeczko > amibroker.com > - Original Message - > From: "mytakeismine" <[EMAIL PROTECTED]> > To: > Sent: Wednesday, February 28, 2007 1:06 AM > Subject: [amibroker] SetChartBkGradientFill(). >

[amibroker] SetChartBkGradientFill().

2007-02-27 Thread mytakeismine
Is it possible to alternate colors from one month to the next with SetChartBkGradientFill() or is this the wrong application for month by month shading? Thanks kj

[amibroker] brain isn't firing what am i missing

2007-02-12 Thread mytakeismine
thinking that once it hits it would move on. I used to write a little in Paradox so I have a little knowledge.(and that's where I went wrong) Thanx Any ideas? or if you can point me in the right direction I would appreciate it. Thanks Kim mytakeismine _SECTION_BEGIN("moonlines");

Trial users vs registered users, was: Re: [amibroker] Re: Amibroker has some fundamental data problems

2007-02-01 Thread mytakeismine
Bravo TJ Brovo Their is so much in Ami you can't go wrong... You may have to work for what you want but it's there. If you want a cookie cutter program that tells you what you want, get on board that software. When you realize that you want to customize, or add to it, and that you need support.

[amibroker] Re: Open All Stocks in a watchlist in new windows.

2006-12-01 Thread mytakeismine
g in AB? I have been trying to read to get my mind wrapped around it and have written in Paradox(need to learn keywords and their functions) Thanks again kj mytakeismine --- In amibroker@yahoogroups.com, "Don Lindberg" <[EMAIL PROTECTED]> wrote: > > Kj, > I use the follo

[amibroker] Re: Open All Stocks in a watchlist in new windows.

2006-12-01 Thread mytakeismine
n one at a time. kj mytakeismine --- In amibroker@yahoogroups.com, RajeevM <[EMAIL PROTECTED]> wrote: > > Hello > > I am looking to do this > > "Open All Stocks in a watchlist in new windows." > > Is there any automated way of doing this? > > or