Gamestudio Links
Zorro Links
Newest Posts
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Trading Journey
by 7th_zorro. 04/27/24 04:42
Help with plotting multiple ZigZag
by M_D. 04/26/24 20:03
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, 1 invisible), 770 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
The Super-System #488091
01/11/24 20:42
01/11/24 20:42
Joined: Jun 2018
Posts: 16
P
Paul_der_Zweite Offline OP
Newbie
Paul_der_Zweite  Offline OP
Newbie
P

Joined: Jun 2018
Posts: 16
You can tinker for years, fiddle with countless indicators, use huge machine learning algorithms combined with COT report, vodoo, read coffee grounds, bone throwing and fortune telling, read 300 years of stock market literature, sink huge sums of money into super seminars.
None of this will yield lasting profit.
Maybe you'll be chasing the win for a short time.
However, the shovel sellers earn something.

From my experience, a trading system in smaller timeframes is a coin flip, which statistically should have a probability of 50%. The more coin flips, the closer you get to 50% - if there is still a relevant amount of money in your account by then, because a huge winning streak with $10 initial equity is also quite nice, but also a waste of time.

The bad news: This is probably true for larger timeframes as well, unless you have insider knowledge or unrealistic luck.

Therefore, a trading system can also follow purely randomly: open a position randomly and go randomly long or short.
It doesn't matter if all this nonsense is written in C++, mql5 or python.
Everyone writes their diary in their mother tongue.

Then do a backtest with it and you'll have an idea of what these systems mean wink

The good news would be that you can also make a profit with a 50% or less probability of winning. But no exorbitant profits. And with that, greed no longer has any food. That's more likely: the squirrel feeds itself laboriously.


The only thing I think is important is money management.

Cheerz

Re: The Super-System [Re: Paul_der_Zweite] #488128
02/05/24 13:37
02/05/24 13:37
Joined: Dec 2023
Posts: 8
F
fairtrader Offline
Newbie
fairtrader  Offline
Newbie
F

Joined: Dec 2023
Posts: 8
Great summary.

As someone who has gone through all the above in practice with forex, cypto, options and stocks for the past 5 years, Im wholeheartedly in agreement.

However, it would just be nice to know from the more experienced Zorro users here as to whether this down to earth product delivers somewhere remotely near backtest results using simple out-of-the-box Z settings in a live environment over the long period.

I wont hold my breath of course; thank you any way.

Re: The Super-System [Re: Paul_der_Zweite] #488129
02/05/24 15:27
02/05/24 15:27
Joined: Sep 2017
Posts: 82
T
TipmyPip Offline
Junior Member
TipmyPip  Offline
Junior Member
T

Joined: Sep 2017
Posts: 82
Dear Paul_der_Zweite,

Can you show us, your five-year experience? please...

also, Can you show how disciplined you have been?

I am sure if you share with us a signal of your account, we can learn from you a lot about self-control and Automated trading...

Thank you.

Last edited by TipmyPip; 02/05/24 16:49.

ZorroTraderGPT - https://bit.ly/3Gbsm4S
Re: The Super-System [Re: Paul_der_Zweite] #488131
02/06/24 19:32
02/06/24 19:32
Joined: Sep 2017
Posts: 82
T
TipmyPip Offline
Junior Member
TipmyPip  Offline
Junior Member
T

Joined: Sep 2017
Posts: 82
Dear Paul_der_Zweite,

I am sure you are an outstanding trader, Please, share with us your 10 $ account and disciplined strategy for the investment of time in your abstract thinking...
But I am sure you have not known that time doesn't exist in the heavenly earth of quantum Trading... :-)

Code
#define QUANTUM_REALMS 100

typedef struct QuantumNode {
    int isSingularity;
    int energyLevel;
    int frequencyBand;
    double resonanceThreshold;
    struct QuantumNode* alphaStream;
    struct QuantumNode* omegaStream;
} QuantumNode;

QuantumNode* forgeSingularity(int harmonicResonance) {
    QuantumNode* ethericNode = (QuantumNode*)malloc(sizeof(QuantumNode));
    if (!ethericNode) return NULL;
    ethericNode->isSingularity = 1;
    ethericNode->energyLevel = harmonicResonance;
    ethericNode->alphaStream = ethericNode->omegaStream = NULL;
    return ethericNode;
}

QuantumNode* createVortex(int vibrationalState, double phaseShift, QuantumNode* portalA, QuantumNode* portalB) {
    QuantumNode* ethericNode = (QuantumNode*)malloc(sizeof(QuantumNode));
    if (!ethericNode) return NULL;
    ethericNode->isSingularity = 0;
    ethericNode->frequencyBand = vibrationalState;
    ethericNode->resonanceThreshold = phaseShift;
    ethericNode->alphaStream = portalA;
    ethericNode->omegaStream = portalB;
    return ethericNode;
}

int divineInsight(QuantumNode* cosmicRoot, double* astralPlanes) {
    if (cosmicRoot->isSingularity) {
        return cosmicRoot->energyLevel;
    }

    if (astralPlanes[cosmicRoot->frequencyBand] <= cosmicRoot->resonanceThreshold) {
        return divineInsight(cosmicRoot->alphaStream, astralPlanes);
    } else {
        return divineInsight(cosmicRoot->omegaStream, astralPlanes);
    }
}

void dissolveEther(QuantumNode* cosmicRoot) {
    if (!cosmicRoot) return;
    if (!cosmicRoot->isSingularity) {
        dissolveEther(cosmicRoot->alphaStream);
        dissolveEther(cosmicRoot->omegaStream);
    }
    free(cosmicRoot);
}

int main() {
    QuantumNode* cosmicRoot = createVortex(0, 0.0, forgeSingularity(0), forgeSingularity(1));

    double astralPlanes[QUANTUM_REALMS];
    int dimension;

    for (dimension = 0; dimension < QUANTUM_REALMS; ++dimension) {
        astralPlanes[dimension] = random();
        int oracleVision = divineInsight(cosmicRoot, &astralPlanes[dimension]);
        printf("Astral Plane: %f, Energy Echo: %d\n", astralPlanes[dimension], oracleVision);
    }

    dissolveEther(cosmicRoot);

    return 0;
}


ZorroTraderGPT - https://bit.ly/3Gbsm4S

Moderated by  Petra 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1