[amibroker] Convert Metastock Data to Amibroker

2009-08-11 Thread NuBeeTrader
Dear friend, I have NO problem converting metastock data to amibroker format..BUT   I need to change/divide  the volume because of overflow   I try to change the metastock format in format folder.into $volfactor 0..002but it doesn't work.   Please help how to change the vol

[amibroker] Re: if () { } Statement and ibc.PlaceOrder

2009-08-11 Thread markedme9
Never mind... I figured out what was wrong in the formula, Actually one of the IF conditions in the formula were using AND function. If (condition1 AND Condition2 AND condition3) { ... ... ... } This was the problem, when the formula is running in the background of AA window, then for so

[amibroker] Re: How To Force IQFeed Backfill For All Symbols

2009-08-11 Thread ganamide
I found my own solution. The underlying problem was that I kept AmiBroker running on my computer, but I regularly put my computer into standby mode every night. When it comes out of standby and AmiBroker is still open, it seems that it doesn't detect the need to backfill. Doing the scan as descr

[amibroker] Re: get atr value at tradetime

2009-08-11 Thread murthysuresh
ok. i dont get my buy signals here. i am trying to get the atr value when my actual trade happened. so in short how do i get my buy= datenum oftrade and timenum oftrade --- In amibroker@yahoogroups.com, "toddk63" wrote: > > Not sure this is what you want... > > BuyBarsSince = BarsSince(Buy ==

[amibroker] Re: get atr value at tradetime

2009-08-11 Thread toddk63
Not sure this is what you want... BuyBarsSince = BarsSince(Buy == 1); ATROpen = Ref(ATR(20),-BuyBarsSince); This keeps the ATR as it was when the trade was opened. Todd K. --- In amibroker@yahoogroups.com, "murthysuresh" wrote: > > hello > i am trying to print the atr value at print time. but

[amibroker] Re: get atr value at tradetime

2009-08-11 Thread murthysuresh
tried another variation. for some reason, i cannot get the timenum correctly as when i do a trace on tn it always returns no value. tradedatew=1090807; tradetime=145346; tn1=TimeNum(); tn=tn1<=tradetime AND (tn1 + Interval())>=tradetime; _TRACE(NumToStr(tn1)); dt=DateNum()==tradedatew; at=ATR(14);

[amibroker] Re: CBT Help to Exit Positions

2009-08-11 Thread bistrader
Yes and this is what the example code I posted does. I had to do this so that rankings (for each watchlist position) were available for ALL market days. Unfortunately, uncommenting this makes the rankings available for just the first market day of the month. I was thinking that I could get th

[amibroker] Re: get atr value at tradetime

2009-08-11 Thread murthysuresh
sny helpers --- In amibroker@yahoogroups.com, "murthysuresh" wrote: > > hello > i am trying to print the atr value at print time. but for somereason, i am > getting the time out of sync > tradedatew=1090807; > tradetime=45346; > a=ValueWhen(tradedatew==DateNum() AND TimeNum()<=tradetime ,ATR(1

[amibroker] Re: How To Force IQFeed Backfill For All Symbols

2009-08-11 Thread sidhartha70
Set up a watchlist of all your symbols and run a scan or exploration across that watchlist doesn't matter what the scan/exploration does... but choose 'wait for backfill' in the automatic analysis window... once symbols are backfilled, they will will continue streaming (all of them) so you w

[amibroker] Is downloading data from etrade.com possible?

2009-08-11 Thread rognvald1
I want to pay for realtimedata from etrade.com but is it possible to download data to them?

[amibroker] How To Force IQFeed Backfill For All Symbols

2009-08-11 Thread ganamide
Hi, How can I force a backfill for all my symbols? Is there an api call I can make from a loop in an exploration to do this? Background: I just subscribed to IQFeed for real-time data and I have around 400 symbols that I am trying to get 5 minute real-time data for. I have noticed some large h

Re: [amibroker] Missing formulas when copying AB to another Drive letter

2009-08-11 Thread Tomasz Janeczko
Missing formulas when copying AB to another Drive letterHello, It is important to understand that AmiBroker has a BUILT-IN feature to move formulas to new location and it updates all internal references automatically. Doing this manually instead of using AMiBroker built-in functionality is the s

Re: [amibroker] Not able to transmit IB order on vista home premium 64 bit OS

2009-08-11 Thread Jin Zhang
Thanks. I figured it out too. Long time not install a new IB controller and forgot I need to unlock it :-) Thanks Jimmy --- On Tue, 8/11/09, Tomasz Janeczko wrote: From: Tomasz Janeczko Subject: Re: [amibroker] Not able to transmit IB order on vista home premium 64 bit OS To: amibroker@yahoo

[amibroker] Re: CBT Help to Exit Positions

2009-08-11 Thread Paolo Cavatore
Have you tried uncommenting the following line? PositionScore = IIf( firstofmonth, Rank, scoreNoRotate ); paolo --- In amibroker@yahoogroups.com, "bistrader" wrote: > > Need help with CBT. Want to buy from a watchlist on First of Month with > delay =1, MaxOpenPos of 3 and Worst1 of 6. This w

Re: [amibroker] Not able to transmit IB order on vista home premium 64 bit OS

2009-08-11 Thread Tomasz Janeczko
Hello, You need to enter registration code into IBC. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "texasjin" To: Sent: Sunday, August 09, 2009 10:58 PM Subject: [amibroker] Not able to transmit IB order on vista home premium 64 bit OS > The IB API code work

[amibroker] Re: remove all excessive signals

2009-08-11 Thread chaoss45
Hi Ed, all, Eventually i was able to remove all excessive signals with the "flip" function. Cond1 = flip("some trigger",buy); Cond2 = flip("some trigger",short); buy = . AND Cond2; short = ... AND Cond1; It was very simple in the end, but i allready thaught it would be :-) Thanks anyhow f

[amibroker] How to open new pane in AFL

2009-08-11 Thread iwegiel
Hello, I want to draw sometning in one pane and then draw something in new pane. How to do it in .afl file? It should be like that: Plot (...) // in first pane OpenSecondPane // how to do it? Plot (...) // in second pane thanks in advance Ireneusz

[amibroker] Not able to transmit IB order on vista home premium 64 bit OS

2009-08-11 Thread texasjin
The IB API code works fine on my other machines, but not work on my Vista Home Premium 64 Bit one. I set the transmit to "True", however, it still return NotYetTransmited, same for limit-buy, market-buy or sell orders. From TWS window, I can verify that order is not transmitted even if I specify

Re: [amibroker] Missing formulas when copying AB to another Drive letter

2009-08-11 Thread Tomasz Janeczko
Re: [amibroker] Missing formulas when copying AB to another Drive letterHello, So make the destination folder empty, change path in preferences and then move the rest of files. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: Herman To: Herman Sent: Tuesda