Hi
If you are using amibroker then you can plot the higher TF stock on the same chart (different panel), using the following code
If you are using amibroker then you can plot the higher TF stock on the same chart (different panel), using the following code
Code:
_SECTION_BEGIN("Stochastic_30_MINS");
periods = Param( "Periods", 8, 1, 200, 1 );
Ksmooth = Param( "%K avg", 3, 1, 200, 1 );
Dsmooth = Param( "%D avg", 4, 1, 200, 1 );
_SECTION_END();
Could you kindly clarify whether the formula for Stochastic is for 30 minutes TF or 5 minute TF ? If it is for 30 minute TF , could you post the formula for 5 minute TF. Or my doubt is very silly ?
Thanking you, in advance.
Grorich