Metatrader Forum | Forex Expert-Advisor | Broker & Forex Tools

Metatrader Forum | Forex Expert-Advisor | Broker & Forex Tools (http://www.expert-advisor.com/forum/index.php)
-   Indikatoren (http://www.expert-advisor.com/forum/forumdisplay.php?f=24)
-   -   Octopus Power Vers.1.50 (http://www.expert-advisor.com/forum/showthread.php?t=6665)

Sirocool 16.05.20 20:35

Octopus Power Vers.1.50
 
Liste der Anhänge anzeigen (Anzahl: 1)
Okay Leute hier schonmal der Octopus Power - RSI

Ihr könnt selber die Down und Up Prozente bestimmen die Periode ist auch einstellbar so wie beim RSI nur das alle Varianten vom RSI enthalten sind umd noch besseres Signal zubekommen.

https://www.minpic.de/t/aex4/1mhllq

Zitat:


//+------------------------------------------------------------------+
//| OctopusPower Vers.1.50 |
//| Copyright © 2020, Marcel Streit |
//| Streitmarcel@hotmail.com |
//+------------------------------------------------------------------+
#property icon "Logo.ico";
#property copyright "©2020 by Marcel Michel Streit "
#property link ""

//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
#property indicator_separate_window
#property indicator_buffers 3
#property indicator_maximum 100


#property indicator_level1 90
#property indicator_level2 50
#property indicator_level3 10

#property indicator_levelcolor clrDarkGray
#property indicator_levelstyle DRAW_ZIGZAG

//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
extern string Octopus_Power_Settings;
extern int K_Period = 14;
extern double Period_Dn = 90.00;
extern double Period_Up = 0.00;
extern color Powerlinie = clrDimGray;

//+------------------------------------------------------------------+
//|Buffer |
//+------------------------------------------------------------------+

double Octopus_Power_Buffer[],Octopus_Power_Dn[],Octopus_Power_Up[];

static string indicatorName = "OctupusPower Vers.150 - RSI "+"("+K_Period+")";


int init()
{
SetIndexBuffer(0,Octopus_Power_Buffer);SetIndexSty le(0,DRAW_LINE,EMPTY,1,Powerlinie);
SetIndexBuffer(1,Octopus_Power_Dn);SetIndexStyle(1 ,DRAW_LINE,EMPTY,2,clrFireBrick);SetIndexLabel(1,N ULL);
SetIndexBuffer(2,Octopus_Power_Up);SetIndexStyle(2 ,DRAW_LINE,EMPTY,2,clrForestGreen);SetIndexLabel(2 ,NULL);
IndicatorShortName(indicatorName);
return(0);
}

//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+

int start()
{
int countedBars = IndicatorCounted(),i;

if(countedBars < 0)
countedBars = 0;

for(i = Bars - countedBars; i >= 0; i--)
{
double RSI_Buffer = (iRSI(Symbol(),Period(),K_Period,PRICE_CLOSE,i)+iR SI(Symbol(),Period(),K_Period,PRICE_OPEN,i)+iRSI(S ymbol(),Period(),K_Period,PRICE_HIGH,i)+iRSI(Symbo l(),Period(),K_Period,PRICE_LOW,i)+iRSI(Symbol(),P eriod(),K_Period,PRICE_MEDIAN,i)+iCCI(Symbol(),Per iod(),K_Period,PRICE_TYPICAL,i)+iRSI(Symbol(),Peri od(),K_Period,PRICE_WEIGHTED,i))/7;



Octopus_Power_Buffer[i]= RSI_Buffer;

if(Octopus_Power_Buffer[i] >= Period_Dn)
{
Octopus_Power_Dn[i] = Octopus_Power_Buffer[i]; Octopus_Power_Dn[i+1] = Octopus_Power_Buffer[i+1];
}
else
{
Octopus_Power_Dn[i] = EMPTY_VALUE;
if(Octopus_Power_Dn[i+2] == EMPTY_VALUE)
Octopus_Power_Dn[i+1] = EMPTY_VALUE;
}

if(Octopus_Power_Buffer[i] <= Period_Up)
{
Octopus_Power_Up[i] = Octopus_Power_Buffer[i]; Octopus_Power_Up[i+1] = Octopus_Power_Buffer[i+1];
}
else
{
Octopus_Power_Up[i] = EMPTY_VALUE;
if(Octopus_Power_Up[i+2] == EMPTY_VALUE)
Octopus_Power_Up[i+1] = EMPTY_VALUE;
}
}
return(0);
}



Es kommen noch für euch Stochasti und CCI habe mit den bis zu 90 % erfolge zurzeit kann euch ein Beweis gerne mit anhängen das ist der Zeitraum von 11.05. bis 15.05.


https://www.minpic.de/t/aexa/s9eq9

Sirocool 16.05.20 22:18

Octopus Power -CCI
 
Liste der Anhänge anzeigen (Anzahl: 1)
Octopus Power - CCI






Project

Octopus Power Signal. = 25 %

RSI = 100 %
CCI = 100 %
Stoch = 0 %

Indikator-Trading 16.05.20 23:58

Der Indikator sieht sehr vielversprechend aus, vielen Dank fürs Teilen! In welchen TF siehst du ihn am besten platziert?

AVT 17.05.20 00:29

Danke
 
:D Danke Dir, @Sirocool, nehme ich in meine Sammlung auf, auch wenn ich zur Zeit noch nicht damit arbeiten kann (weil OBOS Indis momentan nicht in mein Konzept passen). AVT

Sirocool 17.05.20 09:57

Zitat:

Zitat von Indikator-Trading (Beitrag 43703)
Der Indikator sieht sehr vielversprechend aus, vielen Dank fürs Teilen! In welchen TF siehst du ihn am besten platziert?

Also ich Handel EUR/USD und USD/JPY mit den Indikatoren von mir

Sirocool 17.05.20 10:01

Danke
 
Zitat:

Zitat von AVT (Beitrag 43704)
:D Danke Dir, @Sirocool, nehme ich in meine Sammlung auf, auch wenn ich zur Zeit noch nicht damit arbeiten kann (weil OBOS Indis momentan nicht in mein Konzept passen). AVT

Guten Morgen du Handelst Aktien ? wenn ja sag mir bescheid was du brauchst und ich probier mal die indcatoren die du brauchst zu verfeinern :-)

Sirocool 17.05.20 11:07

Octopus Power -Stochastin
 
Liste der Anhänge anzeigen (Anzahl: 2)
Octopus Power - Stochastin






Project

Octopus Power Signal. = 25 %

RSI = 100 %
CCI = 100 %
Stoch = 100 %

AVT 17.05.20 13:12

Zitat:

Zitat von Sirocool (Beitrag 43706)
Guten Morgen du Handelst Aktien ?

Nein, ich versuche jetzt, die optimale (wenn's so was überhaupt gibt) Forex Strategie zu entwickeln - das ist OBOS per Definition eigentlich auszuschließen, auf jeden Fall nicht primär mein Augenmerk. AVT

dax09 27.05.20 13:20

super sache
 
Liste der Anhänge anzeigen (Anzahl: 1)
:) hi sirocool

Am besten finde ich den CCI + VOLUMENSTILE
Ich fahre damit 250/-250 Ebene periode 14 - 33 CCI
Sehr zuverlässig der CCI.
Mal sehen wie sich das hier alles entwickelt?.


Alle Zeitangaben in WEZ +2. Es ist jetzt 15:24 Uhr.

Powered by vBulletin® Version 3.8.5 (Deutsch)
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.6.1
Powered by vBCMS® 2.7.0 ©2002 - 2024 vbdesigns.de
Copyright ©2009 - 2023 by Expert-Advisor.com - Das Metatrader Forum