File tree Expand file tree Collapse file tree 1 file changed +16
-7
lines changed Expand file tree Collapse file tree 1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,22 @@ def main():
13
13
14
14
15
15
"""
16
- This is 'TRADING STRATEGY' code is designed to be inserted into the
17
- Robinhood Crypto Trading API (1.0.0) sample Python code.
18
-
19
- This tading strategy maintans a 50/50 value ratio between your Account's
20
- [Buying Power] and [ETH-USD Holdings Value]. You can specify how many times the
21
- code Loops, the Wait Time in secconds befor the next Loop, and The Buy and Sell
22
- Threshold. Adjust the setting to fit your needs.
16
+ This 'TRADING STRATEGY' bot code is designed to take advantage of the
17
+ Robinhood Crypto Trading API (1.0.0) sample Python script.
18
+
19
+ The bot follows a simple tading strategy that relies an market fluctuation.
20
+ to generate gain. The bot maintans a 50% to 50% balace value ratio
21
+ between your Robinhood Account's [Buying Power] and [ETH-USD Holdings Value].
22
+ * As your [ETH-USD Holdings Value] increases the bot will spill over profit into
23
+ your [Buying Power].
24
+ * As your [ETH-USD Holdings Value] decreases the bot will use funds from your
25
+ [Buying Power] to purchase ETH-USD at the lower price.
26
+ * You can set Buy and Sell Thresholds to prevent the bot from trading before a
27
+ reasonable Market change in value occurs.
28
+ * By adjusting the variables, you can also control how many times the code Loops,
29
+ the Wait Time in secconds befor the next Loop.
30
+
31
+ Adjust the settings to fit your needs. Happy trading!
23
32
"""
24
33
25
34
You can’t perform that action at this time.
0 commit comments