Jump to content

Amibroker 6.30 RC available


insaneike

Recommended Posts

Hi John1992,

 

Thank you @insaneike

 

Yes it help but still the data order is from old to new. Though I need from new date to old date.

 

 

 

As you can see 25th Jan 2019 should be on top, I need this setting.

 

But current setting is 2005 is on top.

 

Sorry, somehow I missed noticing your other requirement.

 

Change

 

for( i = 0; i < BarCount; i++ )

 

to

 

for (i = BarCount; i >=0; i--)

 

Hope this helps.

Link to comment
Share on other sites

  • Replies 103
  • Created
  • Last Reply

Top Posters In This Topic

Hi John1992,

 

 

 

Sorry, somehow I missed noticing your other requirement.

 

Change

 

for( i = 0; i < BarCount; i++ )

 

to

 

for (i = BarCount; i >=0; i--)

 

Hope this helps.

 

Thank you for the reply. Though the code shows verious error now. Here is the code look like now

 

fh = fopen( "c://AmiBackup//"+Name()+".csv", "w");

if( fh )

{

//fputs( "Ticker,Date,Open,High,Low,Close,Volume", fh );

y = Year();

m = Month();

d = Day();

//r = Hour();

//e = Minute();

//n = Second();

//for( i = 0; i < BarCount; i++ )

for( i = BarCount; i >= 0; i-- )

 

//fputs( Name() + "," , fh );

{ds = StrFormat("%02.0f-%02.0f-%02.0f,",

y[ i ], m[ i ], d[ i ] );

fputs( ds, fh );

 

//ts = StrFormat("%02.0f:%02.0f:%02.0f,",

//r[ i ],e[ i ],n[ i ] );

//fputs( ts, fh );

 

qs = StrFormat("%.4f,%.4f,%.4f,%.4f,%.0f

",

O[ i ],H[ i ],L[ i ],C[ i ],V[ i ] );

fputs( qs, fh );

}

 

fclose( fh );

}

 

Buy = 0;

 

I'm getting various error.

Link to comment
Share on other sites

Thank you for the reply. Though the code shows verious error now. Here is the code look like now

 

 

 

I'm getting various error.

 

There you go. I've tested the below code before posting now :). Sorry for not doing that in the previous attempts.

 

----- >8 Snip start of code >8 -----

filter = 0;

buy = 0;

sell = 0;

 

cur_idx = barcount - 1;

 

fh = fopen("c://AmiBackup//" + name() + ".csv", "w");

 

if(fh) {

y = year();

m = month();

d = day();

 

while (cur_idx >= 0) {

ds = strformat("%02.0f-%02.0f-%02.0f,", y[cur_idx], m[cur_idx], d[cur_idx]);

fputs( ds, fh );

 

qs = strformat("%.4f,%.4f,%.4f,%.4f,%.0f\n", o[cur_idx], h[cur_idx], l[cur_idx], c[cur_idx], v[cur_idx]);

fputs(qs, fh);

cur_idx--;

}

}

 

fclose(fh);

----- >8 Snip end of code >8 -----

 

I don't think you would need 4 digits after the decimal for the ohlc data. In case you need only 2 digits replace

 

qs = strformat("%.4f,%.4f,%.4f,%.4f,%.0f\n", o[cur_idx], h[cur_idx], l[cur_idx], c[cur_idx], v[cur_idx]);

 

with

 

qs = strformat("%.2f,%.2f,%.2f,%.2f,%.0f\n", o[cur_idx], h[cur_idx], l[cur_idx], c[cur_idx], v[cur_idx]);

 

Hope this helps.

Link to comment
Share on other sites

  • 5 months later...
  • 3 weeks later...
  • 2 weeks later...
  • 1 month later...
  • 2 weeks later...

Amibroker 6.31 is really great that fixed many bugs in 6.30

 

the most important is 6.31 have ability to send post request. With that, we can have near realtime notification to our mobile devices like iphone.

 

64bit faster a little bit but much more complex to be fixed, so 32bit version is fine.

 

it's great if someone share the fixed free 6.31 32bit [-O<

Link to comment
Share on other sites

Yeah... It seems our resident crackers dont want to have the extra work to crack 64bit version even if he are willing to pay them.

 

I think for him, he think that 32bit is fine for most of people whom want to use free. For newest, greatest function like 64bit, we must pay for company so they can keep working and making new versions. Thats fair enough :)>-

Link to comment
Share on other sites

Amibroker 6.31 is really great that fixed many bugs in 6.30

 

the most important is 6.31 have ability to send post request. With that, we can have near realtime notification to our mobile devices like iphone.

 

64bit faster a little bit but much more complex to be fixed, so 32bit version is fine.

 

it's great if someone share the fixed free 6.31 32bit [-O<

 

Request someone to share the setup for the 6.31 32-bit and 64-bit versions. Thanks.

Link to comment
Share on other sites

Here is a link that I found on a file hoster. Unfortunately only downloadable by premium users.

 

hxxps://k2s.cc/file/44192dc6f4695/AmiBroker_6.30.5_Ultimate_Pro_Version.rar

 

Maybe some of our users here can have better luck downloading it and resharing with others here.

 

Source: hxxps://latest-soft-versions.blogspot.com/2019/05/download-amibroker-6305-ultimate-pro.html

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...