Jump to content

How to output indicator values in Wave59?


shawnh

Recommended Posts

Hi guys, I'm trying to output the bar-by-bar values of the "Planet Rise Harmonics" indicator in Wave 59 after I apply it to a chart. I know there is already a built-in function to do this - "Output Indicator to Ascii", but this requires that the indicator must also have a corresponding "function" in Wave 59 - which the "Planet Rise Harmonics" indicator does not. Would anyone know of any kind of "trick" in Wave 59 to do this?

 

Thanks!

Shawn

Link to comment
Share on other sites

i think better place for it is wave 59 forum.

 

as far as i think output indicator to ascii may not work as planet harmonic index is not an indicator.

every astro tab tool are not listed in indicator.

if you use Output Chart in ASCII, than it may work, but you have to separate Planet Harmonic Index data from it

Edited by rlygangesh
Link to comment
Share on other sites

I am not a registered Wave59 member... I am unable to access the forum.

 

As far as I can tell, "Output_Chart" will only output the price bar data rlygangesh:

 

file_write(filename,year,"/",month,"/",day,delimiter,time,delimiter,o,delimiter,h,delimiter,l,delimiter,c,delimiter,volume);

 

 

Thanks

Shawn

 

 

 

i think better place for it is wave 59 forum.

 

as far as i think output indicator to ascii may not work as planet harmonic index is not an indicator.

every astro tab tool are not listed in indicator.

if you use Output Chart in ASCII, than it may work, but you have to separate Planet Harmonic Index data from it

Link to comment
Share on other sites

I am not a registered Wave59 member... I am unable to access the forum.

 

As far as I can tell, "Output_Chart" will only output the price bar data rlygangesh:

 

file_write(filename,year,"/",month,"/",day,delimiter,time,delimiter,o,delimiter,h,delimiter,l,delimiter,c,delimiter,volume);

 

 

Thanks

Shawn

 

ok i will try with forum

Link to comment
Share on other sites

  • 2 weeks later...

input:filename("c:\my_astro_data.txt");

 

if (barnum == barsback) {

file_delete(filename); # clear the file if it already exists

}

 

# get the moons position - see qscript help for instructions on this function. you may use any astro function with it

moon = astro(year, month, day, time, astro_moon, true, astro_long, true);

 

# write the data for this bar to the file

file_write(filename,year," ",month," ",day," ",time," ",moon);

 

# plot a line on the chart so you can see when the indicator is finished

plot1 = close;

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...