Loading...
Stack three neurons + a hidden layer. Train to classify 'this oversold bar will bounce >1%' vs 'it won't'.
A single neuron is a linear classifier. Market patterns aren't linear — RSI 25 means different things depending on whether BTC is trending or chopping.
An MLP with one hidden layer can learn non-linear combinations:
hidden = tanh(W1 * features + b1)
output = sigmoid(W2 * hidden + b2)Start simple:
Each is a hand-crafted signal the network learns to combine.
Write a 4-2-1 MLP (4 inputs, 2 hidden, 1 output). Train it on labeled oversold-bar data. Report accuracy on a held-out test set.
Target: test accuracy >= 65%.