⭐ shawnh Posted June 25, 2017 Report Share Posted June 25, 2017 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 Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted June 26, 2017 Report Share Posted June 26, 2017 (edited) 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 June 26, 2017 by rlygangesh Quote Link to comment Share on other sites More sharing options...
⭐ shawnh Posted June 26, 2017 Author Report Share Posted June 26, 2017 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 Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted June 26, 2017 Report Share Posted June 26, 2017 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 ⭐ shawnh 1 Quote Link to comment Share on other sites More sharing options...
⭐ shawnh Posted June 26, 2017 Author Report Share Posted June 26, 2017 thanks very much Sir! Quote Link to comment Share on other sites More sharing options...
⭐ shawnh Posted July 7, 2017 Author Report Share Posted July 7, 2017 Hi rlygangesh... did you have any success with the Wave59 forum? Thanks Shawn Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted July 8, 2017 Report Share Posted July 8, 2017 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; Quote Link to comment Share on other sites More sharing options...
⭐ shawnh Posted July 8, 2017 Author Report Share Posted July 8, 2017 Thank you Sir... but this "Astro" function - in the manual it says it returns ephemeris data. With the settings above, this will return the exact same as the "Planet Rise Harmonic Index"? I don't think it's the same thing... Thanks Shawn Quote Link to comment Share on other sites More sharing options...
rlygangesh Posted July 8, 2017 Report Share Posted July 8, 2017 click help button in qscript, planet rise harmonics is a part of ephemeris data. so you have to do some search Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.