2.5% per Day Strategy

avatar

I just came across an investment/trading strategy that is quite interesting.

Let me share it.

It's simple. Say, you start with $100, the idea is to invest in an instrument with the aim of gaining a small percentage. For example, 2.5%.

To illustrate, Day 1, invest all that $100 in a promising instrument. If the profit hits $2.5, i.e. 2.5%. Sell it all. The expectation is that this should happen within a week if the instrument is bullish.

Then pick another product and do the same.

This is how the growth chart looks like.

In about 400 weeks, or 7.69 years, 1 million can be reached!

Clearly, this is hypothetical. There are several things to watch out for, such as a sudden crash! So it is a strategy that also need prudence, such as a stop loss in place.

The Python code is shown below, in case you are interested to play with it.

import matplotlib.pyplot as plt
starting_capital = 100
target_amount = 1000000
weekly_growth_rate = 0.025
current_capital = starting_capital
weeks = 0
capital_history = [current_capital]
while current_capital < target_amount:
current_capital *= (1 + weekly_growth_rate)
weeks += 1
capital_history.append(current_capital)
plt.figure(figsize=(10, 6))
plt.plot(range(weeks + 1), capital_history, marker='o', linestyle='-')
plt.title('Capital Growth Over Time')
plt.xlabel('Weeks')
plt.ylabel('Capital ($)')
plt.grid(True)
plt.show()

What is Hive?

#leofinance @leofinance


What is the Brief Random Posts about?

Disclaimer: This is not financial advice, and you should always do your own due diligence before investing!

Posted Using InLeo Alpha



0
0
0.000
12 comments
avatar

Can a bot be deployed and perform this task??

Actually it will work in bull cycle perhaps, but the only question is its ability to do it consistantly and that too in a bear cycle.

Anyway, it's really interesting.

0
0
0.000
avatar

can you apply it and let us know the results :P

0
0
0.000
avatar

It is a strategy that can be followed if there is a bot that can be automatically entering the trade. It will be stressful if one is watching it by itself

0
0
0.000
avatar

great strategy, but how could we implement that?

0
0
0.000
avatar

High risk, high reward, but I find it difficult to hit a strike and forever grow. Still, interesting math behind it.

0
0
0.000
avatar

It's possible but any investment has a chance of failing. I think avoiding losses will help a lot but I guess that might not matter as much in a bull run.

0
0
0.000
avatar

If one should look at it carefully, it is actually possible. Just that risk is also involved in the calculation

0
0
0.000
avatar

Two and a half dollar profit is good, you have to strengthen your strategy

0
0
0.000