PureBytes Links
Trading Reference Links
|
Alex,
Try this:
step = 0.0025;
add = 0.0005;
x = step * int( 1 + ( O + add ) / step );
NewOpenPrice = IIf( Longsetup, x, 0 );
/Johan
--- In amibroker@xxxxxxxxxxxxxxx, "dralexchambers"
<dralexchambers@xxx> wrote:
>
> Hello,
>
> I'm trying to do the following for each LongSetup bar == 1:
>
> - Add 5 points (GBPUSD) to the Open price
> - Find the nearest price above this that ends (x.xx00, x.xx25,
x.xx50
> or x.xx75)
> - Store this nearest value in NewOpenPrice[]
>
> The code below doesn't seem to work.
>
> If I plot NewOpenPrice, all I get is zeros for every bar.
>
> Can anyone advise - thanks!
> Alex
>
> ============================
> NewOpenPrice = 0;
>
> for (i=1; i<BarCount; i++)
> {
> if (Longsetup[i]==1)
> {
> a = O[i] + 0.0005;
> b = 0;
> while(b < 27)
> {
> if (a%0.0025 == 0)
> {
> NewOpenPrice[i] = a;
> b = 40; // end loop
> }
> else
> {
> b = b + 1;
> a = a + 0.0001;
> }
> }
>
> }
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|