You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An autonomous crypto trading agent that references market decisions and then uses near intents to execute trades across many chains via a single near account
4
4
@@ -8,30 +8,34 @@ An autonomous crypto trading agent that references market decisions and then use
8
8
9
9
Simple strategy customization - just pass a config object to override the default Wall Street strategy.
10
10
11
-
12
11
### Default Strategy
13
12
14
13
The system comes with a proven Wall Street 3-step strategy:
15
14
16
15
```typescript
17
16
// From lib/strategies/index.ts
18
17
exportconst DEFAULT_STRATEGY:StrategyConfig= {
19
-
overview: "Wall Street 3-Step: Data-driven day trading with clear profit/loss targets and risk management",
18
+
overview:
19
+
"Wall Street 3-Step: Data-driven day trading with clear profit/loss targets and risk management",
20
20
riskParams: {
21
-
profitTarget: 2, // +2% profit target
22
-
stopLoss: -1.5, // -1.5% stop loss
23
-
maxPositions: 4, // Max 4 open positions
24
-
positionSize: "5-15% of USDC"
21
+
profitTarget: 2, // +2% profit target
22
+
stopLoss: -1.5, // -1.5% stop loss
23
+
maxPositions: 4, // Max 4 open positions
24
+
positionSize: "5-15% of USDC",
25
25
},
26
-
step1Rules: "Risk targets: SELL at +2% profit OR -1.5% loss. Close losing positions faster than winners (cut losses, let profits run). .",
27
-
step2Rules: "Screen for high-probability setups: Price momentum >3% with volume confirmation, Fear/Greed extremes, Order book imbalances. Use 1 analysis tool only if market data insufficient. Only trade clear directional moves.",
28
-
step3Rules: "Dynamic sizing: 5-15% per trade (scales with account). Size calculation: Min($10, Max($5, USDC_balance * 0.10)). Account for slippage: Minimum $8 positions. Max 3-4 open positions at once."
26
+
step1Rules:
27
+
"Risk targets: SELL at +2% profit OR -1.5% loss. Close losing positions faster than winners (cut losses, let profits run). .",
28
+
step2Rules:
29
+
"Screen for high-probability setups: Price momentum >3% with volume confirmation, Fear/Greed extremes, Order book imbalances. Use 1 analysis tool only if market data insufficient. Only trade clear directional moves.",
30
+
step3Rules:
31
+
"Dynamic sizing: 5-15% per trade (scales with account). Size calculation: Min($10, Max($5, USDC_balance * 0.10)). Account for slippage: Minimum $8 positions. Max 3-4 open positions at once.",
29
32
};
30
33
```
31
34
32
35
### Available Tools
33
36
34
37
All strategies have access to these trading tools:
0 commit comments