-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
98 lines (91 loc) · 4.95 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
---
layout: default
---
<div class="row">
<div class="col-md-8 mb-5">
<h2>About project</h2>
<hr />
<p>
This open source project is about momentum base trend following systematic trading strategies inspired from top trend following traders (Richard Denis, Olivier Seban and Nick Radge) implemented for various trading platforms as TradingView, cTrader and QuantConnect. </p>
<ul>
<li>
Our trading algorithms are designed to be understandable and usable by both novice and advanced technical traders. Basic knowledge of programming is an advantage for the full use of our strategies.
</li>
<li>
The strategies presented on our website are designed as long only, which means that they are suitable for trading in markets that have long-term growth potential with strong momentum, such as cryptocurrency Bitcoin or stock index Nasdaq 100.
</li>
<li>
Our strategies are optimized for medium-term trading and use daily charts, which allows effective management of trades with a longer time horizon.
</li>
</ul>
<h3>What is trend-following trading?</h3>
<p>
Trend following is when you try to capture extended moves in the financial markets, either up or down, mostly for long-term gains. Once in a while prices tend to keep on going (enduring) and these are the moves trend followers like. The aim is to capture most of such moves, not all, but the majority of them.
</p>
<p>
Trend followers are not trying to predict tops and bottoms. They are not trying to predict anything, really. The aim is, quite simply, to take advantage of moves in different asset classes in the anticipation that some of the positions go their way big time. There is zero forecasting involved.
</p>
<div class="btn-group" role="group" aria-label="Basic example">
<div class="btn-group mr-2" role="group" aria-label="First group">
<a class="btn btn-primary btn-lg" href="https://github.com/GeorgeFreelanceDeveloper/trend-follow.io">Github »</a>
</div>
<div class="btn-group mr-2" role="group" aria-label="Second group">
<a class="btn btn-primary btn-lg" href="backtests/">Backtests »</a>
</div>
<div class="btn-group" role="group" aria-label="Third group">
<a class="btn btn-primary btn-lg" href="markets/">Markets »</a>
</div>
</div>
</div>
{% include sidebar.html %}
</div>
<!-- /.row -->
<div class="row">
<div class="col-md-4 mb-5">
<div class="card border-0 shadow h-100">
<img class="card-img-top" src="assets/images/turtle_example.png" width="400px" height="270px" alt="" />
<div class="card-body">
<h4 class="card-title">Turtle</h4>
<p class="card-text">
The Turtle Trading strategy is a famous trend-following approach developed by legendary commodity traders Richard Dennis and William Eckhardt in the early 1980s.
The strategy involves buying a stock or contract during a breakout (when prices move above a trading range) and quickly selling on a retracement or price fall.
</p>
</div>
<div class="card-footer">
<a href="strategies/pages/turtle-strategy/" class="btn btn-primary">Find Out More!</a>
</div>
</div>
</div>
<div class="col-md-4 mb-5">
<div class="card border-0 shadow h-100">
<img class="card-img-top" src="assets/images/supertrend_example.png" width="400px" height="270px" alt="" />
<div class="card-body">
<h4 class="card-title">Supertrend</h4>
<p class="card-text">
The Supertrend Strategy is a trend trading strategy developed by Olivier Seban that uses the Supertrend indicator to identify and trade trends in the financial markets. This strategy focuses on entering the market in line with the main trend and exiting the market when the trend begins to reverse.
</p>
</div>
<div class="card-footer">
<a href="strategies/pages/supertrend-strategy/" class="btn btn-primary">Find Out More!</a>
</div>
</div>
</div>
<div class="col-md-4 mb-5">
<div class="card border-0 shadow h-100">
<img class="card-img-top" src="assets/images/bollinger_example.png" width="400px" height="270px" alt="" />
<div class="card-body">
<h4 class="card-title">Bollinger Band Breakout</h4>
<p class="card-text">
The purpose of this strategy is to use the Bollinger Bands to generate trading signals designed to capture powerful breakout price moves and to capitalize on the resulting trends from these breakouts. Strategy developed Australian trader Nick Radge.
</p>
</div>
<div class="card-footer">
<a href="../strategies/pages/bollinger-band-strategy/" class="btn btn-primary">Find Out More!</a>
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="shadow h-100 card-footer d-grid gap-2 d-md-flex justify-content-md-center">
<a href="../strategies/" class="btn btn-primary">More Strategies</a>
</div>