upport the necessary API to be
> > run from AmiBroker:
> >
> > http://finance.groups.yahoo.com/group/amibroker/message/131261
> >
> > Mike
> >
> > --- In amibroker@yahoogroups.com, "srengret" wrote:
> > >
> > > Mike, thanks for the
> Edit | Image -> | Export to File
> Save as type PNG (for example).
>
> From FireFox:
>
> File | New Tab
> File | Open File
> Select the file saved from AmiBroker.
>
> Alternatively, just drag and drop the image file into a tab in FireFox.
>
> Mike
>
&g
Is there a way to open and view Amibroker charts in a tab under Mozilla Firefox
browser? I've tried opening it as a file, but it hasn't worked for me. I'd
like to view other websites under other tabs while tabbing back and forth
between Amibroker and them. If so, how to do so?
ning the critria formulas and use one ApplyStop
>
> Criteron1 = your formula1
> criterion2 = your formula2
> criterion = smaller of (or larger of or whatever ) critrion1 and criterion2
>
> ApplyStop(.,criterion,...);
>
> - Original Message -
> From: "
Does Amibroker allow two trailing stops?
I've been trying to code two trailing stops with different criteria in
Amibroker 5.10.
Why do this: Some, but not all, of the ATR-based trailing stops allow too big
of a loss when the 7% stop seems to catch them earlier.
Here is what I've tried:
The
Found my error.
I had the Plot statement wrong for styleOwnScale.
Thanks.
--- In amibroker@yahoogroups.com, "srengret" wrote:
>
> I have two trailing stops implemented. Both use the ApplyStop function.
> One uses 7% and the other uses Close - (3*ATR(10)).
> When pl
I have two trailing stops implemented. Both use the ApplyStop function.
One uses 7% and the other uses Close - (3*ATR(10)).
When plotting these, it looks like one overrides the other. I set it up so
that the sell arrows for each would be different colors so that I could see
which one acted fi
tegies.
Anyway, the plots that I wanted to show now are displayed.
Many thanks for your help. I would have had no idea to right click on the
pane.
Many regards,
SrEngRet
--- In amibroker@yahoogroups.com, "monitorit" wrote:
>
> --- In amibroker@yahoogroups.com, "sr
> --- In amibroker@yahoogroups.com, "srengret" wrote:
> >
> srengret,
> Have you tried scrolling down to a price level that's probably 30% or so
> below the close price? Or perhaps change 3*ATR.. to 1*ATR... or 0.5*ATR and
> see it nearer the close.
> Dan
>
ups.com, "Joris Schuller" wrote:
>
> Plot (C-(3*(ATR(10))), "c-3*ATR(10)", colorDarkGreen);
>
> //added; if you don't see line below plotted, you know it is the background
>
> Plot (C, "C", colorDarkGreen,64);
>
>
>
> From: amib
I'm using Amibroker 5.10.
I'm writing code to set a trailing stop at 3* ATR. I'm trying to plot 3 *ATR
as a line to see this, yet I'm unable to plot it after checking references and
modifying the code.
The code worked fine using the ApplyStop for a 7% trailing stop. I commented
it out to use
Since replacing a defective hard drive and reinstalling Amibroker, I
can no longer obtain volume data with Yahoo daily or historical
downloads. The .aqd and .aqh files seem okay.
Can anyone enlighten me on the correct settings to make this happen as
before?
I had to reinstall Amibroker and Amiquote due to a hard drive failure.
I am no longer able to download volume data for the current day from
Yahoo's site. The aqh and aqd format files are okay. I am able to
download ticker price data.
Assuming I have a setting wrong somewhere, would someone remind
--- In amibroker@yahoogroups.com, "srengret" <[EMAIL PROTECTED]> wrote:
>
> I'm using Version 4.9.
>
> Is there a way to increase the allowed text space for displaying the
> full name in the information tab? I downloaded data from Yahoo
> Fundamental-Basi
I'm using Version 4.9.
Is there a way to increase the allowed text space for displaying the
full name in the information tab? I downloaded data from Yahoo
Fundamental-Basic.
For example, when I look at the stock symbol PEY, I look at the
Information tab and see Full Name. Next to Full Name, al
I'm using Version 4.9.
How can I alphabetize my watch lists as displayed in the Symbols panel?
For example: I have Vanguard ETFs and iShares ETFs listed. The
Vanguard ETFs are before the iShares ETFs. How can I resort this?
I'm using Amibroker 4.9. I want to use an indicator to visually
display a trailing stop. The "//Equity(0)" statement was an earlier
attempt to work this out. The following code is used on ETF symbol MZZ:
Sell=0;
//Trailing Stop at 7% Loss
ApplyStop(2,1,7,1,False,1);
Equity(1,0);// THIS EVALUATES
Thanks for the help.
Regards.
--- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote:
>
> SetPositionSize( 100, spsShares );
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -
> From: "srengr
That was it. Thanks for the help.
Regards.
--- In amibroker@yahoogroups.com, ChrisB <[EMAIL PROTECTED]> wrote:
>
> srengret
>
> Have you tried:
>
> Shape = iif(buy,shapeUpArrow,ShapeNone);
> instead of Shape = buy * ShapeUpArrow; // ??
>
> Until I u
I've overlooked something in shapes for sell arrows in an indicator
test. I'm using Amibroker 4.90.5. I obtained more sell arrows than I
thought should display. The trailing stops seem to be okay.
For instance, I obtain sell arrows that are shaped as triangles when I
don't see that in the code
can be that you do not have sufficient funds to enter all trades or
> backtestmode (regular) is removing all excess signals.
>
>
> --- In amibroker@yahoogroups.com, "srengret" wrote:
> >
> > When conducting a backtest, I obtain a trade list report as selecte
When conducting a backtest, I obtain a trade list report as selected
in my settings. When I view the price chart, the stock shows more buy
and sell arrows in the price chart than the trade list report shows
in the text. This only happens some of the time. In other cases,
the trade list report
;
> Change last part to:
>
> X = Foreign ("^GSPC","Close");
>
> AND X > Ref(x,-20);
>
>
> - Original Message -
> From: "srengret" <[EMAIL PROTECTED]>
> To:
> Sent: Friday, January 04, 2008 5:43 AM
> Subject: [am
t;, "Close") > Foreign ("^GSPC", "Ref(Close,-20)");
When I place this in previously working code with other criteria, it
doesn't seem to have an effect.
Does anyone see what is wrong with the last line and/or is there a
better way to do this?
Regards,
SrEngRet
24 matches
Mail list logo