// Downloaded From https://www.WiseStockTrader.com //------------------------------------------------------------------------------ // // Excuse my English. Text is write for programme PC TRANSLATOR.This indicator // not given clear purchase and selling signals. Signals is necessary take // only like possible turning point. Already long time investigation different // indicator and get I am to findings, that movement stock isn't forward // possible estimate along none of they.Beyond even any share go up and no go // down, as long as oneself near she there were no signal indicator. Growth // stock is that is dependent only for mood investors and stag and for her no // indicator there's not. // // Indicator show only possible turning point. It if turn faces to turn trend, // correction and or go about false signal can be find out only by return. // Nevertheless yourself I think, that is important indicator track. // Experience oneself that is appreciation signal value do good and as far as // have you in addition needed dues luck, you can drive a good bargain. // // Indicator: This indicator work with very short RSI, long SSO and simple // moving average. RSI be instrumental to conciliation signals. STOCHASTIC is // there together with moving average take like indicator trend. Below graph // are band which reflect signals and trend along SMA. // // 1.Band : Common signals RSI and SSO (have not major weight than independent // signal from RSI) // // 2.Band : Signals RSI // // 3.Band : Signals SSO // // 4.Band : Trend along MA ( green light = weak bullish trend, green = strong // bullish trend, light red % = weak bear trend -possible turnover bullish // trend for bear, red = strong bear trend ) // // Isn't right in trades ranges. // // PS : According to the of my is needless look for perfect strategy because // simply any there's not. To good deals faces only experienced eye, good // smell , arrogance and self-assured. If those so it has not been, no live // would businessmen in stress and it has not been would from broker firm // leakage. Hope that by means of these indicator, and isn't necessary use // just me election indices, you can get good eye, It the others is for you. // God preserve madman, who oneself decision make money for exchange. // // !!!Scaling: CUSTOM -40 and 110; Gird lines 50 !!! // //------------------------------------------------------------------------------ //XXXXXXXXXXXXXXXXXXX COMBO XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX //!!!Scaling: CUSTOM -40 and 110; Gird lines 50 !!! MaxGraph=200; GraphXSpace=1; //XXXXXXXXXXXXXXXXXXX Podmínky grafu XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX TI = 3 ; TS = 10 ; // Délka RSI (long for RSI and MA RSI) D3 = 50 ; // SSO (long for SSO) //_________Graf 1___________________________________________________________________ IND = RSI ( TI ) ; SIG = MA ( RSI ( TI ) , TS ) ; IND2 = StochK(D3); SIG2 = StochD(D3); //==================== Buy conditionsNákupní podmínky (Buy conditions)============== //________ Ke grafu 1_______________________________________________________________ BP = Cross ( IND , SIG ); // Nákup RSI Buy RSI BP2 = Cross ( IND2 , SIG2 ); // Nákup SSO Buy SSO SP = Cross ( SIG , IND ); // Prodej RSI Sell RSI SP2 = Cross ( SIG2 , IND2 ); // Prodej RSI Sell SSO B = BP AND BP2; // Nákup RSI + SSO Buy RSI + SSO S = SP AND SP2; // Prodej RSI + SSO Sell RSI + SSO //________ TREND podle MA(C,20) ____________________________________________________ F1 = 5 ; // Délka krátkého MA Long for short MA F2 = 20 ; // Délka dlouhého MA Long for long MA TM = MA ( C , F1 ) ; // 5 denní MA ze záverecné ceny TM2 = MA ( C , F2 ) ; // 20 denní MA ze záverecné ceny UTM = IIf(C>TM AND CTM AND C>TM2,5,IIf(CTM2,13,IIf(C MA(C,20); Column0 = BP ; Column0Name = "SIGNÁL RSI" ; Column0Format = 1.0 ; Column1 = TB ; Column1Name = "TREND BULL" ; Column1Format = 1.0 ; Column2 = C ; Column2Name = "CLOSE" ; Column2Format = 1.2 ; //XXXXXXXXXXXXXXXXXXX COMBO XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX MaxGraph=200; GraphXSpace=1; //XXXXXXXXXXXXXXXXXXX Podmínky grafu XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX TI = 3 ; TS = 10 ; // Délka D3 = 50 ; // SSO //_________Graf 1___________________________________________________________________ IND = RSI ( TI ) ; SIG = MA ( RSI ( TI ) , TS ) ; IND2 = StochK(D3); SIG2 = StochD(D3); //==================== Nákupní podmínky ============================================ //________ Ke grafu 1_______________________________________________________________ BP = Cross ( IND , SIG ); // Nákup RSI BP2 = Cross ( IND2 , SIG2 ); // Nákup SSO SP = Cross ( SIG , IND ); // Prodej RSI SP2 = Cross ( SIG2 , IND2 ); // Prodej RSI B = BP AND BP2; // Nákup RSI + SSO S = SP AND SP2; // Prodej RSI + SSO //________ TREND podle MA(C,20) ____________________________________________________ F1 = 5 ; // Délka krátkého MA F2 = 20 ; // Délka dlouhého MA TM = MA ( C , F1 ) ; // 5 denní MA ze záverecné ceny TM2 = MA ( C , F2 ) ; // 20 denní MA ze záverecné ceny UTM = IIf(C>TM AND CTM AND C>TM2,5,IIf(CTM2,13,IIf(C MA(C,20); Column0 = BP ; Column0Name = "SIGNÁL RSI" ; Column0Format = 1.0 ; Column1 = TB ; Column1Name = "TREND BULL" ; Column1Format = 1.0 ; Column2 = C ; Column2Name = "CLOSE" ; Column2Format = 1.2 ;