R: Currency Strength Block
-
This should be the right board for a request, if not then a moderator can move it in the appropriate section.
Many times I wanted to export currency strength data on a .csv file on Microsoft Works, but the block/s I am missing is the currency strength calculation. I am making a request for the next adds and upgrades of fxDreema for a currency strength block/s which will export data on .csv files and connects and other blocks.
The calculation should be this:
//--strength with daily range double dStrengthRange=0; if(dailyRange!=0) dStrengthRange=100.0*(dCloseLow/dailyRange); //-- set fixed values double settedValue=0; if(dStrengthRange>3.0) settedValue=1; if(dStrengthRange>10.0) settedValue=2; if(dStrengthRange>25.0) settedValue=3; if(dStrengthRange>40.0) settedValue=4; if(dStrengthRange>50.0) settedValue=5; if(dStrengthRange>60.0) settedValue=6; if(dStrengthRange>75.0) settedValue=7; if(dStrengthRange>90.0) settedValue=8; if(dStrengthRange>97.0) settedValue=9; return(settedValue);Also it should calculate all 9 timeframes and an option to choose in which timeframe the user wants to make calculations and save to a file for future analysis.
-
Isn't this job for some indicator?
-
__Isn't this job for some indicator?[/quote:14vynbsd]
I can't find one with a buffer that works, do you know any?
-
I personally don't know any