Search the web
Sign In
New User? Sign Up
amibroker · AmiBroker User's List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 122221 - 122250 of 126300   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
122221
selectedvalue(Barindex()) ? depending on your application you me need to precede this with Setbarsrequired(1000000,1000); Best regards, herman For tips on...
Herman
psytek2
Offline Send Email
Apr 1, 2008
7:21 am
122222
Try this quick method to delete them. 1) make a spare copy of the database with some data in it (say at least 5days). 2) delete all of the .OB stock in that...
brian_z111
Offline Send Email
Apr 1, 2008
7:29 am
122223
Herman, Thank you for your reply. Unfortunatley, that doesn't quite capture what I was hoping for. If I understand correctly, the bar index used by...
Mike
sfclimbers
Offline Send Email
Apr 1, 2008
8:28 am
122224
Not sure, perhaps a loop is needed, or the Custom backtester. h For tips on developing Real-Time Auto-Trading systems visit: http://www.amibroker.org/userkb/...
Herman
psytek2
Offline Send Email
Apr 1, 2008
8:32 am
122225
Mike, Array maths works on whole arrays at a time, so there's no such thing as a current index scalar, and there's no concept of "at any bar". You're always...
gp_sydney
Offline Send Email
Apr 1, 2008
10:29 am
122226
Hello, First and foremost, you need to carefully read "Understanding AFL" http://www.amibroker.com/guide/h_understandafl.html Then read the gp_sydney reply: ...
Tomasz Janeczko
amibroker
Offline Send Email
Apr 1, 2008
10:41 am
122227
Hi guys, im after a way to ignore a buy signal if there has been a previous buy signal on the underlying in the last 30 days? is there an easy way to do that?...
p_thomas82
Offline Send Email
Apr 1, 2008
11:10 am
122228
all the bosses sorry for disturbing you.I am not a programmer so i cant debug the errors. will you help me by sending the full coding?it is giving error. ...
mohammed zaman
mrzaman20
Offline Send Email
Apr 1, 2008
11:10 am
122229
... The way I understand it, if you are hoping to "getCurrentBarIndex()" as it logically advances during AFL array-based operations, you can't. Those ops are...
progster01
Offline Send Email
Apr 1, 2008
12:01 pm
122230
Hi all, Sorry for asking a newbie question. Do you know if the stochastic RSI (stochrsi) indicator as defined by stockcharts.com (see link below), which is...
sailorvea
Offline Send Email
Apr 1, 2008
12:14 pm
122231
Hi there, I import Swedish market historical quotes from Yahoo. As many have noted, the ticker names are different for the same stock. The question is: Should...
garyniemen
Offline Send Email
Apr 1, 2008
12:15 pm
122232
Hi, Has anyone of you ever come across the problem of properly backtesting stop-loss orders at intraday level in order to get the correct High-Low sequence...
Paolo Cavatore
pcavatore
Offline Send Email
Apr 1, 2008
12:16 pm
122233
Hi, I want to trade one symbol intraday with an ATC as part of the buy and sell signals. If I set AA Apply to = current symbol, how do I tell ATC to use a...
dallen2507
Offline Send Email
Apr 1, 2008
12:17 pm
122234
Hello, Recently I have noticed some e-mails sent by participants to groups -at- amibroker dot com address. This is invalid address for private communication. I...
Tomasz Janeczko
amibroker
Offline Send Email
Apr 1, 2008
12:29 pm
122235
Has anyone of you ever come across the problem of properly backtesting stop-loss orders at intraday level in order to get the correct High-Low sequence within...
Paolo Cavatore
pcavatore
Offline Send Email
Apr 1, 2008
12:44 pm
122236
try: period = 13; graph0=100*( ( RSI( period ) - LLV( RSI( period ) , period ) ) / ( ( HHV( RSI( period ) , period ) ) - LLV(RSI( period ), period ) ) ); ... ...
gmorlosky
Offline Send Email
Apr 1, 2008
1:13 pm
122237
The other alternative is to leave amiquote the way it import tickers according to yahoo conventions and use alias in amibroker to match the correct names, ie...
Paul Ho
paultsho
Offline Send Email
Apr 1, 2008
1:51 pm
122238
hello sir , PLEASE, please help me in ranking stocks as i have read \ applied all available posts \formulas but no luck... i want to rank them in this order ...
chandrakant
darshan_age
Offline Send Email
Apr 1, 2008
2:13 pm
122239
In your backtest code try adding the line: Buy = Buy AND BarsSince(Ref(Buy, -1) < 29); Haven't tested it but it should be quick and easy to try. Rgds,...
Phsst
Offline Send Email
Apr 1, 2008
2:20 pm
122240
See LastValue() and SelectedValue functions in help Count = LastValue(BarsSince(Buy)); ... From: "Mike" <sfclimbers@...> To: <amibroker@yahoogroups.com> ...
Ara Kaloustian
Akaloustian
Offline Send Email
Apr 1, 2008
2:45 pm
122241
Thanks for that. Can I follow up? I feel like I should know this - but what is the advantage of using Alias of Symbol Translation table? What does one gain?...
garyniemen
Offline Send Email
Apr 1, 2008
3:30 pm
122242
Thanks for that. Can I follow up? I feel like I should know this - but what is the advantage of using Alias of Symbol Translation table? What does one gain?...
garyniemen
Offline Send Email
Apr 1, 2008
3:33 pm
122243
Hello, In a AFL formula I wrote something like that : AddColumn( DateTime(), "Date", formatDateTime ); AddColumn(Open,"Open",1.6); AddColumn(High,"High",1.6); ...
pierre8rou
Offline Send Email
Apr 1, 2008
4:22 pm
122244
Dear Group I recently used Quote Tracker with Amibroker and upgraded the Standard version to Pro version yesterday. I made a Portfolio of some 70 scrips in QT...
Vinay Garg
vgarg59
Offline Send Email
Apr 1, 2008
5:51 pm
122245
Dear Group I recently used Quote Tracker with Amibroker and upgraded the Standard version to Pro version yesterday. I made a Portfolio of some 70 scrips in QT...
Vinay Garg
vgarg59
Offline Send Email
Apr 1, 2008
5:52 pm
122246
My recent experience with QT is that: 1. When a symbol is added to AB, you need to refresh AB (View/Refresh All) otherwise symbols get mixed up. 2. Some...
Ara Kaloustian
Akaloustian
Offline Send Email
Apr 1, 2008
6:35 pm
122247
Does anybody know if there is way to change the color of ROC to red and character type to bold if it has a negative value in the following statement? TIA ...
tipequity
Offline Send Email
Apr 1, 2008
10:57 pm
122248
I figured out how to change the color to red when ROC is negative. The following is a reworked version: if (SelectedValue( ROC(C,1)) < 0 ) ROCFormat =...
tipequity
Offline Send Email
Apr 2, 2008
12:04 am
122249
Thanks for all the replies. You have confirmed what I expected. I'm already doing looping. I was just hoping someone might have a neat little trick, so as to ...
Mike
sfclimbers
Offline Send Email
Apr 2, 2008
12:10 am
122250
If Buy has not yet been set, you will need to break out the signal from the asignment. Also check for > 29 rather than < 29. Signal = ... buy logic ... Buy =...
Mike
sfclimbers
Offline Send Email
Apr 2, 2008
12:26 am
Messages 122221 - 122250 of 126300   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help