... ===You can set teh buy price to anything you want by using BuyPrice=XXX....
2684
L... B....
leroyb33000
Apr 5, 2005 2:17 am
I'm new to writing Amibroker Code and could use some direction. I'm sure the people on here could do this code in a few seconds. I'm just trying to find...
2685
Brian Fenske
bfenske
Apr 5, 2005 8:50 pm
This is great info, although I haven't tried it yet. How did you figure out these futures syms? Is there a method or was it trial and error? I would like to...
2686
Brian Fenske
bfenske
Apr 6, 2005 11:37 am
I answered my own question. I studied the CME website and read about how they format a symbol. The trick is that the IB demo does not support every symbol...
2687
Pat Finnegan
pfinnegan1
Apr 11, 2005 1:16 pm
I am looking for a routine to allow trading a pair. I think I saw a reference to one but cannot find it! Any suggestion welcome. Pat....
2688
optiekoersen
Apr 12, 2005 2:36 am
I am developing a system and here for I use mutiple buy/sell reasons. Sometimes the system gives buy and sell signals at the same time. The system is then...
2689
mrdavis9
xokie7
Apr 12, 2005 2:46 am
use Sum(#1 or #2 or #3 or #4 or #5 or #6,nbars)>=4; ... From: optiekoersen To: amibroker-ts@yahoogroups.com Sent: Monday, April 11, 2005 6:51 PM Subject:...
2690
forex5x
Apr 12, 2005 5:30 pm
This is just for concept: If Reason 1 = Buy then Signal = signal + 1 If Reason 2 = Buy then Signal = signal + 1 If Reason 3 = Buy then Signal = signal + 1 If...
2691
optiekoersen
Apr 14, 2005 4:54 am
Okay everybody, thanks for the help. I am going to rebuild my sytem right now. For so far I can see is it possible with the help I got from you. I am curious...
2692
steve_almond
Apr 15, 2005 10:16 am
I want to explore my stock universe for stocks which steadily appreciate with low risk more important than a risky, high return. The ideal stock would appear...
2693
Thomas Ludwig
tlu1024
Apr 17, 2005 2:20 pm
Steve, one useful strategy would be to chose stocks with a low Beta and a high Alpha as defined in http://www.amibroker.com/library/detail.php? id=157 . A...
2694
joeemmett2000
Apr 17, 2005 2:20 pm
When I backtest using the 'long or short' option in settings, I should be invested nearly 100% of the time. If I do a year by year walk through, sometimes the...
2695
Fred
fctonetti
Apr 17, 2005 2:23 pm
1. Yes 2. KRatio ... The ... be ... performance ... this...
2696
Bernard Bourée
bernardbouree
Apr 17, 2005 4:07 pm
I hvae the following code. Ticker = ParamStr( "Ticker", "PX1" ); RSIp=Param( "Durée RSI", 12, 2, 100 ); MACp=Param( "Durée MA courte", 6, 2, 100 ); ...
2697
Thomas Zmuck
thomas_001us
Apr 17, 2005 4:17 pm
Hi, this happens because you have used RSI as your ows function but RSI is predefined in amibroker. So probably you meant: MAL=MA(RS,MAlp); Regards Thomas...
2698
msc626
Apr 17, 2005 5:28 pm
Something like-- BUY = your condition OR (MONTH()==1 AND (DAY()==2 OR DAY()==3 OR DAY()==4));// In case first days of the year are on weekend. A more elegant...
2699
joeemmett2000
Apr 18, 2005 3:58 pm
Thanks for your reply Dale. I can see your code working if the trade I was in at the end of the year was a long trade. If starting on 1/1/?? was a continuation...
2700
dozy_trader
Apr 18, 2005 8:15 pm
Hi everybody, I'm new around here and just trying to get to grips with Amibroker. I've not been able to find how to code a breakout from a time range using...
2701
hoolee0820
Apr 18, 2005 9:41 pm
Here is what I would do: set the chart interval to 2 hr; set the database RTH to start at 6:00 or 8:00; Buy = cross(C, Ref(H, -1)); ... with...
2702
hoolee0820
Apr 18, 2005 9:43 pm
Buy = (TimeNum() == 080000) and cross(C, Ref(H, -1)); ... range ... buy ... variations ... somewhere ... an...
2703
hoolee0820
Apr 18, 2005 9:45 pm
this has been a long day for me. Here: Buy = (TimeNum() == 100000) and cross(C, Ref(H, -1)); ... grips ... like...
2704
ed nl
ed2000nl
Apr 19, 2005 8:41 am
hi Dozy, this will probably get you started. Put the code inside an indicator window, rgds, Ed // 1) define two points in time // 10000 * hour + 100 * minute +...
2705
areehoi
Apr 21, 2005 11:51 pm
Hi all: This is a new exploration formula that I'm trying out that I'm considering converting into a trading system. It seems to work Okay butI get a too many...
2706
Graham
kavemanperth
Apr 22, 2005 12:04 am
Yes I have found again the same thing happening, scans and backtest are ok. exrem will remove arrows from charts but not remove the actual background signal,...
2707
scott_mariani
Apr 25, 2005 6:19 am
I have a group of symbols I run a scan on in 2 minute intervals during the trading day. I am scanning for potential "buy" signals but I am also watching for...
2708
Graham
kavemanperth
Apr 25, 2005 9:37 am
you could try this if your buy signals also are provided within the same code Intrade = flip(buy,sell); Alertif(Sell and ref(intrade,-1), etc ); there are...
2709
poiss
Apr 26, 2005 4:15 pm
Hello Some notes on Your formula: 1. Sell = MACD signal crossing MACD AND MACD signal crossing MACD and... ? What is the point? 2. "Sell=....Cross(MDI (14),...
2710
Scooter
scott_mariani
Apr 26, 2005 11:32 pm
Graham, Thanks for the input. I researched the "Flip" function and it seems like I would miss potential signals. I would like to be able to scan my list of 200...
2711
Graham
kavemanperth
Apr 26, 2005 11:46 pm
You would still get buy signals as you would run 2 alerts Alertif(Buy, etc ); Intrade = flip(buy,sell); Alertif(Sell and ref(intrade,-1), etc ); ... -- ...
2712
Graham
kavemanperth
Apr 26, 2005 11:53 pm
Poiss, you need to be very pedantic in the writing of code to give signals. You need to have option signals bracketed if it is an either or choice. Also always...