Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated:
1
00:00:11,530 --> 00:00:13,810
Hi, everyone, and welcome in this new video.
2
00:00:14,380 --> 00:00:19,630
In this video, I will show you how to create some support and resistance.
3
00:00:20,080 --> 00:00:26,200
The first thing to know is that there are a lot of way to create support and resistance.
4
00:00:26,740 --> 00:00:28,840
You can use moving out rage.
5
00:00:28,840 --> 00:00:30,710
You can use body to roll.
6
00:00:30,790 --> 00:00:42,040
You can use the max value on end days on the previous day, Exeter and in our case, we will create
7
00:00:42,430 --> 00:00:43,120
a support.
8
00:00:43,270 --> 00:00:53,890
We will take that this circle is a support if the five consecutive decrease of the low price.
9
00:00:54,880 --> 00:01:03,310
And if we have five consecutive increase of the increase, we will not this fiscal as a resistance.
10
00:01:04,640 --> 00:01:14,140
So it's a very personal way to create them, but you can check for your own way to create the support,
11
00:01:14,390 --> 00:01:17,030
so to create a name using Python.
12
00:01:17,060 --> 00:01:18,740
It's very simple.
13
00:01:19,430 --> 00:01:27,860
First, we need to create some empty column name support and resistance and containing only missing
14
00:01:27,860 --> 00:01:28,350
value.
15
00:01:28,370 --> 00:01:29,570
It's very important.
16
00:01:29,570 --> 00:01:32,540
In our case, we cannot put only zero.
17
00:01:33,610 --> 00:01:40,660
On the column, we need to put men value, and I will detail in the Nixon White.
18
00:01:42,370 --> 00:01:46,270
Then to put some value in the support column.
19
00:01:46,750 --> 00:01:51,490
We just need to create a condition, and the condition is very simple.
20
00:01:52,060 --> 00:02:05,350
If we have this five condition in the same time, we will put the value of the load on the support column.
21
00:02:05,890 --> 00:02:09,790
And these five conditions are very, very easy.
22
00:02:10,570 --> 00:02:15,070
We just need that we have five consecutive degrees of the low price.
23
00:02:15,370 --> 00:02:20,560
It means that five day before today we need that to price.
24
00:02:22,390 --> 00:02:33,490
Was lower was greater sorry than the price five days before today, and the price five full days before
25
00:02:33,670 --> 00:02:40,720
today needs to be greater than the prior three days before today.
26
00:02:41,080 --> 00:02:44,530
And this until Tuesday.
27
00:02:46,430 --> 00:02:51,230
And for the resistance is exactly the same thing.
28
00:02:51,920 --> 00:03:01,490
It means that we need to have five consecutive increase of the aid price to put this threshold as a
29
00:03:01,490 --> 00:03:02,180
resistance.
30
00:03:03,230 --> 00:03:07,670
So let me show you graphically what we have done the.
31
00:03:09,180 --> 00:03:19,410
First, we need to plot the candlestick to be sure that we can verify or implementation, so to plot
32
00:03:19,530 --> 00:03:20,460
the candlestick.
33
00:03:20,990 --> 00:03:23,280
We'll use this port of call.
34
00:03:25,070 --> 00:03:25,400
So.
35
00:03:26,720 --> 00:03:27,260
First.
36
00:03:28,280 --> 00:03:37,580
We'll just create another dataframe, very, very small one month, for example, to have a better visualization
37
00:03:37,940 --> 00:03:46,590
that we can put like three months or six months, but know only one year is too begin to have a better
38
00:03:46,610 --> 00:03:49,370
with a good visualization on the graph.
39
00:03:50,030 --> 00:03:52,340
Then we initialize our graph.
40
00:03:52,730 --> 00:03:54,470
We plot the candlestick.
41
00:03:54,860 --> 00:03:57,530
So this is just the.
42
00:03:58,780 --> 00:04:03,610
Multiple finance function, so it demand the.
43
00:04:04,420 --> 00:04:06,610
So this and.
44
00:04:08,280 --> 00:04:14,310
The date, the open, the eye, the low and the close for each candlestick.
45
00:04:15,240 --> 00:04:24,180
It seems logical then is just cooler here, and we can apply and no further transparency.
46
00:04:24,570 --> 00:04:26,400
And here we can apply.
47
00:04:26,940 --> 00:04:30,810
We can change the width of the candlestick exige.
48
00:04:32,010 --> 00:04:34,620
Then here is to.
49
00:04:36,300 --> 00:04:36,750
Puts.
50
00:04:37,800 --> 00:04:47,520
To date, in the correct format, for example, here we put day, month year, OK, so it's not very
51
00:04:47,520 --> 00:04:50,490
important to focus on this line of goods.
52
00:04:50,940 --> 00:04:58,860
The most important thing is the graph, OK, because when will when you will trade your own strategy?
53
00:04:59,220 --> 00:05:01,330
The graph doesn't really matter.
54
00:05:01,350 --> 00:05:01,730
OK?
55
00:05:01,980 --> 00:05:05,430
The graph is just here to verify your computations.
56
00:05:07,190 --> 00:05:17,270
And then for each venue, which is not equal to none in the resistance column, we will plot a line.
57
00:05:19,350 --> 00:05:29,820
From the date, so from the date of the resistance to the end of the graph.
58
00:05:30,810 --> 00:05:38,430
And here is just to change the type of line the line with acceptable, so it it's not really important.
59
00:05:40,600 --> 00:05:44,110
For the Cypriots, we do exactly the same thing.
60
00:05:44,890 --> 00:05:45,280
OK.
61
00:05:45,790 --> 00:05:48,220
And we can just.
62
00:05:50,080 --> 00:05:51,250
Check a little bit.
63
00:05:51,730 --> 00:05:58,600
The zip function here for this, if you are not comfortable with this function, it's very simple.
64
00:05:59,500 --> 00:06:04,810
Instead of create like a loop full with one.
65
00:06:06,390 --> 00:06:08,400
Value, we will change.
66
00:06:11,690 --> 00:06:18,560
We will create a loop full with two values, and in all case we will take.
67
00:06:19,590 --> 00:06:28,020
The resistance and the date for each resistance to be able to plug them on the graph.
68
00:06:29,250 --> 00:06:31,890
So if I put this.
69
00:06:33,970 --> 00:06:34,780
We can see.
70
00:06:36,380 --> 00:06:44,870
The candlestick of the euro, you is deep, and I really wanted to take this asset, at least for its
71
00:06:44,870 --> 00:06:48,710
assets, because I wanted to isolate you.
72
00:06:48,950 --> 00:06:53,990
That's using why finance the forex data or not?
73
00:06:54,110 --> 00:06:55,010
Very good.
74
00:06:55,220 --> 00:06:55,560
OK.
75
00:06:55,760 --> 00:06:59,030
It should take some stocks data.
76
00:06:59,630 --> 00:07:01,010
It's we need better.
77
00:07:01,310 --> 00:07:08,690
But as I have said in many of my other courses, if you want to create a strategy, you need to use
78
00:07:08,690 --> 00:07:14,180
the broker strategy and we will use them at the end of this chapter.
79
00:07:14,540 --> 00:07:14,960
OK.
80
00:07:15,140 --> 00:07:22,940
But to trade this strategy, I always used personally, it's a personal treat the way finance data.
81
00:07:23,090 --> 00:07:23,420
OK?
82
00:07:23,510 --> 00:07:28,550
It's very simple to import it, to plug them, etc. So.
83
00:07:31,440 --> 00:07:35,550
I used white finance to trade my strategy because.
84
00:07:37,240 --> 00:07:40,870
It's easy to import exit Europe, but.
85
00:07:42,010 --> 00:07:44,650
To create the trading strategy you can use.
86
00:07:44,800 --> 00:07:46,810
Use the white finance data.
87
00:07:46,900 --> 00:07:47,260
OK.
88
00:07:47,590 --> 00:07:50,500
You need to be as close as possible to the market.
89
00:07:50,800 --> 00:07:53,740
And so you will take the broker's data.
90
00:07:54,520 --> 00:07:56,140
So and here we can see that.
91
00:07:58,790 --> 00:08:07,340
Graphically, we can tell that we have good resistance and support because here, for example, we have.
92
00:08:09,500 --> 00:08:11,960
Five increase of the price.
93
00:08:12,230 --> 00:08:18,200
So we put a resistance, and here we have five degrees of the low price.
94
00:08:18,410 --> 00:08:20,740
So we put her supports.
95
00:08:21,110 --> 00:08:25,220
OK, so we have correctly implement this.
96
00:08:25,820 --> 00:08:31,370
But if, for example, a print one year, for example, 2019, OK.
97
00:08:33,790 --> 00:08:38,950
We can see that we have a lot of support and with assistance and is not really.
98
00:08:40,590 --> 00:08:42,630
On stable graphically.
99
00:08:43,020 --> 00:08:52,020
OK, so you fixed this issue, will take exactly the same grid and will apply the field and the method
100
00:08:52,740 --> 00:09:00,800
to the support and resistance column and the filani method will be very useful in this case.
101
00:09:00,810 --> 00:09:05,760
I will show you why and graphically, it's a better way to show you.
102
00:09:06,820 --> 00:09:15,400
It will take all the support and resistance official to create only one line.
103
00:09:15,550 --> 00:09:15,910
So.
104
00:09:17,620 --> 00:09:19,810
It's very important to keep.
105
00:09:21,270 --> 00:09:30,210
This Collins OK, because support and resistance or very useful when you want to create a trading strategy,
106
00:09:30,870 --> 00:09:36,480
usually we must use only support and resistance, but.
107
00:09:37,990 --> 00:09:44,050
It's a very important indicator when you want to trade using price action.
108
00:09:44,440 --> 00:09:44,890
So.
109
00:09:46,490 --> 00:09:59,360
I will invite you to understand how to treat them and to create this type of indicator to customize
110
00:09:59,480 --> 00:10:00,380
your strategies.
9826
Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.