What's new
Heroturko

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

The Complete Python Trading Bot Bootcamp 2024 Edition

ad-team

Trusted Editor
Trusted Editor
537368816_que-es-udemy-analisis-opiniones.jpg

5.69 GB | 25min 3s | mp4 | 1280X720 | 16:9
Genre:eLearning |Language:English

Files Included :
1 -Guide on how to take the course.mp4 (44.91 MB)
2 -Recommendations.mp4 (12.87 MB)
3 -How to use Q&A and how to message me directly.mp4 (18.42 MB)
1 -Introduction.mp4 (9.82 MB)
10 -Example 7 Use sum() to sum integers and floats in a list.mp4 (4.41 MB)
11 -Example 8 Use max() to find the highest value in a list.mp4 (3.65 MB)
12 -Example 9 Use min() to find the lowest value in a list.mp4 (3.4 MB)
13 -Example 10 Retrieve second object from a list using its index.mp4 (7.56 MB)
14 -Example 11 Retrieve second to last object from a list using its index.mp4 (3.91 MB)
15 -Example 12 Check length of list before indexing.mp4 (5.66 MB)
16 -Example 13 Slice first 3 objects from list.mp4 (5.77 MB)
17 -Example 14 Slice last 3 objects from list.mp4 (1.74 MB)
18 -Example 15 Replacing original list with its sliced section.mp4 (3.24 MB)
19 -Example 16 Shortcut to replacing original list with its sliced section.mp4 (1.96 MB)
2 -Example 1 Add an object to a list.mp4 (5.46 MB)
20 -Example 17 Basic for loop.mp4 (19.56 MB)
21 -Example 17 - simplified.mp4 (6.61 MB)
22 -Illustration of for loops.mp4 (10.68 MB)
23 -Important things to remember about for loops.mp4 (42.92 MB)
24 -Example 18 Practical example of for loop.mp4 (15.38 MB)
25 -Example 19 for loop with continue statement.mp4 (12.38 MB)
26 -Example 20 for loop with break statement.mp4 (22.98 MB)
27 -Example 21 range().mp4 (4.65 MB)
28 -Example 22 Loop through indexes of multiple lists.mp4 (38.78 MB)
29 -Example 23 Nested for loop.mp4 (23.25 MB)
3 -Important notes about adding objects to lists.mp4 (8.05 MB)
30 -Important things to remember about nested for loops.mp4 (12.42 MB)
31 -Example 24 break statement in inner loop.mp4 (7.98 MB)
32 -Example 25 break statement in outer loop.mp4 (3.14 MB)
4 -Example 2 Use the in operator to check if an object is in a list.mp4 (6.79 MB)
5 -Example 3 Use not in to check if an object is not inside a list.mp4 (5.13 MB)
6 -Example 4 Remove everything from a list.mp4 (7.64 MB)
7 -Example 5 Use remove() to remove an object from a list.mp4 (5.02 MB)
8 -Important notes about the remove() method.mp4 (10.68 MB)
9 -Example 6 Use len() to count the number of objects in a list.mp4 (2.69 MB)
1 -Introduction.mp4 (10.68 MB)
10 -Example 8 Check if key in dictionary before removing keyvalue pair.mp4 (6.47 MB)
11 -Example 9 Remove a keyvalue pair that doesn't exist in a dictionary.mp4 (4 MB)
12 -Example 10 for loop through dictionary and print each key.mp4 (7.29 MB)
13 -Example 11 Retrieve value of each key during for loop of dictionary.mp4 (6.13 MB)
14 -Example 12 Removing keyvalue pairs during for loop of dictionary.mp4 (9.98 MB)
15 -Example 13 Retrieve latest price of AAPL from list inside dictionary.mp4 (14.73 MB)
16 -Example 14 Retrieve last 2 objects from list inside dictionary.mp4 (4.51 MB)
17 -Example 15 Add object to list inside dictionary.mp4 (3.76 MB)
18 -Example 16 Remove last 2 objects from list inside dictionary.mp4 (9.38 MB)
19 -Example 17 Sort dictionary in ascending order.mp4 (17.22 MB)
2 -Important things to remember about dictionaries.mp4 (15.55 MB)
20 -Example 18 Sort dictionary in descending order.mp4 (8.88 MB)
21 -Example 19 Retrieve top 2 stocks after sorting in descending order.mp4 (20.1 MB)
3 -Example 1 Retrieve a value from a dictionary.mp4 (12.93 MB)
4 -Example 2 Add a keyvalue pair to an empty dictionary.mp4 (4.32 MB)
5 -Example 3 Replace value of existing key.mp4 (7.55 MB)
6 -Example 4 If key in dictionary, print value.mp4 (6.73 MB)
7 -Example 5 If key not in dictionary, print "key not in dictionary".mp4 (4.83 MB)
8 -Example 6 Remove everything from a dictionary.mp4 (4.31 MB)
9 -Example 7 Remove keyvalue pair from dictionary.mp4 (5.35 MB)
1 -Introduction.mp4 (3.24 MB)
2 -Example 1 Function with no input parameters and returns nothing.mp4 (16.12 MB)
3 -Example 2 Function with no input parameters and returns a single object.mp4 (16.07 MB)
4 -Example 3 Function with no input parameters and returns 2 objects.mp4 (16.05 MB)
5 -Example 4 Global and local variable.mp4 (23.22 MB)
6 -Example 5 Function with 1 input parameter and returns nothing.mp4 (33.69 MB)
7 -Example 6 Function with 2 input parameters and returns nothing.mp4 (17.1 MB)
8 -Example 7 Reference parameters when inputting function inputs.mp4 (12.64 MB)
9 -Example 8 Function with 2 input parameters and returns a single object.mp4 (12.96 MB)
1 -Introduction.mp4 (17.54 MB)
10 -Example 8 Variation to example 6.mp4 (6.33 MB)
11 -Key points to remember from this chapter.mp4 (4.86 MB)
2 -Example 1 Create a car factory class.mp4 (9.39 MB)
3 -Example 2 Create an object with class from example 1.mp4 (15.89 MB)
4 -Example 3 Reference the attributes of object created in example 2.mp4 (22.49 MB)
5 -Example 4 Same as example 3 but without the self keyword behind each attribute.mp4 (10.97 MB)
6 -Example 5 Create a new method.mp4 (12.64 MB)
7 -Example 6 Run accelerate() method outside of its class.mp4 (11.14 MB)
8 -Example 7 Run accelerate() method inside of its class.mp4 (15.73 MB)
9 -Important things to take note about objects.mp4 (12.46 MB)
1 -Introduction.mp4 (1.37 MB)
2 -Example 1 Create a tuple.mp4 (1.67 MB)
3 -Example 2 Create a tuple that stores different object types.mp4 (2.28 MB)
4 -Example 3 Index first object in tuple.mp4 (2.56 MB)
5 -Example 4 Index last object in tuple.mp4 (2.57 MB)
6 -Why learn about tuples.mp4 (1.75 MB)
1 -Introduction.mp4 (8.99 MB)
2 -QuantConnect's research notebook.mp4 (19.96 MB)
3 -Important note 1 Make sure to spell library names correctly.mp4 (5.44 MB)
4 -Important note 2 Always import a library at the very top of the code.mp4 (9.18 MB)
5 -Important note 3 Coding environment and research notebook limitations.mp4 (32.39 MB)
1 -Introduction.mp4 (4.63 MB)
2 -Example 1 mean() function from the statistics library.mp4 (9.01 MB)
3 -Example 2 stdev() function from the statistics library.mp4 (5.72 MB)
1 -Introduction.mp4 (15.39 MB)
10 -Example 9 Print message if datetime 1 is more than 5 minutes from datetime 2.mp4 (10.72 MB)
2 -Example 1 Create datetime object that represents the time now.mp4 (17.05 MB)
3 -Example 2 Reference the attributes of a datetime object.mp4 (5.58 MB)
4 -Example 3 Reference the day of the week represented by a datetime object.mp4 (6.92 MB)
5 -Example 4 Create datetime object for 300 pm, 7th of December 2021.mp4 (17.47 MB)
6 -Example 5 Compare 2 datetime objects.mp4 (7.47 MB)
7 -Example 6 Add 10 hours to datetime object.mp4 (12.24 MB)
8 -Example 7 Subtract 10 weeks and 5 seconds from datetime object.mp4 (4.83 MB)
9 -Example 8 Add 5 weeks and subtract 10 hours from current time.mp4 (7.28 MB)
1 -Introduction.mp4 (9.55 MB)
10 -Example 6 Use len() to count number of values in a column before indexing.mp4 (2.47 MB)
11 -Example 7 Convert the column of a dataframe into a list.mp4 (3.62 MB)
12 -Example 8 Print index of dataframe.mp4 (5.08 MB)
13 -Example 9 Isolate time index.mp4 (9.47 MB)
14 -Example 10 Loop through dataframe and print indexes.mp4 (15.98 MB)
15 -Example 11 Loop through dataframe and print time isolated indexes.mp4 (3.54 MB)
16 -Example 12 Loop through dataframe and print rows.mp4 (5.49 MB)
17 -Example 13 Access close prices of each row during a for loop.mp4 (4.18 MB)
18 -Example 14 Create pandas dataframe.mp4 (20.59 MB)
19 -Example 15 Dataframe with single column.mp4 (2.73 MB)
2 -What is an API.mp4 (9.34 MB)
20 -Example 16 Find average of a column.mp4 (5.74 MB)
21 -Example 17 Find average of last 5 values of a column.mp4 (4.57 MB)
22 -Example 18 Find sum of a column.mp4 (2.75 MB)
23 -Example 19 Find average of row.mp4 (3.93 MB)
24 -Example 20 Column with mean of each row.mp4 (7.96 MB)
25 -Example 21 Column with mean of open, high, low and close columns.mp4 (6.01 MB)
26 -Example 22 Historical data for AAPL and TSLA.mp4 (8.28 MB)
27 -Example 23 Retrieve historical data of AAPL from combined dataframe.mp4 (6.21 MB)
28 -Example 24 30-period SMA.mp4 (23.32 MB)
29 -Example 25 Count "NaN" values.mp4 (14.17 MB)
3 -Step 1 Build a connection between research notebook and QuantConnect.mp4 (7.37 MB)
30 -Example 26 10-period EMA.mp4 (9.58 MB)
31 -Example 27 MACD with settings (12, 26, 9).mp4 (27.99 MB)
32 -Example 28 Plotting SMAs.mp4 (13.47 MB)
33 -Example 29 Fix x-axis of chart from example 28.mp4 (9.1 MB)
34 -Example 30 Print index when fast SMA crosses above slow SMA.mp4 (12.5 MB)
35 -Example 31 Request for historical data between 2 times.mp4 (25.38 MB)
36 -Example 32 Plot minute resolution SMAs with extended hours data.mp4 (3.13 MB)
37 -Example 33 Plot minute resolution SMAs without extended hours data.mp4 (10.03 MB)
38 -Example 34 Simulate historical data error.mp4 (15.51 MB)
39 -Example 35 Check if stock symbol string in dataframe index.mp4 (8.82 MB)
4 -Step 2 Request QuantConnect for access to data for a stock.mp4 (71.01 MB)
5 -Step 3 Request historical data for a stock.mp4 (49.2 MB)
6 -QuantConnect's API reference page.mp4 (14.23 MB)
7 -Example 3 Access column of dataframe using square brackets.mp4 (17.02 MB)
8 -Example 4 Index first and last value from a column.mp4 (6.41 MB)
9 -Example 5 Use len() to count number of rows in dataframe before indexing.mp4 (5 MB)
1 -Introduction.mp4 (5.86 MB)
2 -Example 1 try and except.mp4 (12 MB)
1 -Introduction to Python tutor.mp4 (5.06 MB)
2 -Example 1 How to use Python tutor for code execution visualization.mp4 (12.56 MB)
3 -Example 2 How to run code in Python tutor without code execution visualization.mp4 (3.34 MB)
1 -Introduction.mp4 (1.16 MB)
2 -Tip 1 Use finder to find spelling errors.mp4 (7.57 MB)
3 -Tip 2 Copy and paste.mp4 (3.3 MB)
1 -Introduction.mp4 (8.12 MB)
2 -File management.mp4 (10.93 MB)
1 -Introduction.mp4 (35.63 MB)
2 -Example 1 Using QuantConnect's debugger.mp4 (19.17 MB)
3 -Example 2 An error occurs while debugging.mp4 (12.27 MB)
4 -Example 3 Inspect a variable while debugging.mp4 (22.47 MB)
1 -Introduction.mp4 (5.04 MB)
2 -The plan and backtest node I recommend.mp4 (12.29 MB)
1 -Introduction.mp4 (3.75 MB)
2 -Example 1 Using self log() to print messages.mp4 (11.91 MB)
1 -Introduction.mp4 (33.94 MB)
2 -Important things to remember about the on data method.mp4 (9.78 MB)
1 -Introduction.mp4 (1.32 MB)
2 -QuantConnect's API support system.mp4 (13.19 MB)
1 -Introduction.mp4 (604.89 KB)
2 -Example 1 initialize.mp4 (45.66 MB)
1 -Introduction.mp4 (11.13 MB)
2 -Example 1 Access close price.mp4 (3.35 MB)
3 -Example 2 Print close price.mp4 (5.36 MB)
4 -Example 3 Multiple stocks.mp4 (28.64 MB)
5 -Example 4 Accessing data from "data Slice".mp4 (22.61 MB)
6 -Example 5 ETFs.mp4 (8.61 MB)
1 -Introduction.mp4 (10.59 MB)
10 -Example 8 Limit order.mp4 (28.14 MB)
11 -Example 9 Prevent repetitive limit orders for SPY.mp4 (12.74 MB)
12 -Example 10 Cancel a limit order if it's not filled after 5 minutes.mp4 (24.49 MB)
13 -Example 11 Update limit price and quantity if limit order not filled after 5min.mp4 (10.3 MB)
14 -Example 12 Change limit order to market order if it's not filled after 5min.mp4 (8.69 MB)
15 -Example 13 Enter a long position if MACD is greater than MACD signal.mp4 (20.43 MB)
16 -Example 14 Invest equally in each asset.mp4 (16.29 MB)
17 -Example 15 Prevent repetitive limit orders.mp4 (8.91 MB)
18 -Example 16 Cancel limit orders if they don't fill after 5 minutes.mp4 (4.23 MB)
19 -Example 17 Update limit price of limit orders if they don't fill after 5min.mp4 (6.75 MB)
2 -Important notes about orders.mp4 (7.95 MB)
20 -Example 18 Change limit orders to market orders if they don't fill after 5min.mp4 (4.46 MB)
21 -Example 19 Limit order management with long and short orders.mp4 (29.85 MB)
22 -Conclusion.mp4 (5.84 MB)
3 -Example 1 Submit market order for SPY.mp4 (17.4 MB)
4 -Example 2 Only buy SPY if not already invested.mp4 (4.88 MB)
5 -Example 3 Short SPY.mp4 (4.68 MB)
6 -Example 4 Buy SPY using 50% of portfolio cash.mp4 (10.97 MB)
7 -Example 5 Buy SPY with margin.mp4 (11.49 MB)
8 -Example 6 Closing a long position.mp4 (5.06 MB)
9 -Example 7 Closing a short position.mp4 (9.91 MB)
1 -Introduction.mp4 (1.88 MB)
2 -The 4 basic object types.mp4 (18.15 MB)
3 -Important things to remember about basic object types.mp4 (8.7 MB)
1 -Introduction.mp4 (10.43 MB)
10 -Example 9 Take profit and trailing stop loss.mp4 (13.99 MB)
2 -Example 1 Prevent buying and selling (selling and buying) on the same day.mp4 (16.59 MB)
3 -Example 2 Stop loss on long positions.mp4 (10.37 MB)
4 -Example 3 Stop loss on short positions.mp4 (4 MB)
5 -Example 4 Stop loss in a trading bot with both long and short positions.mp4 (7.62 MB)
6 -Example 5 Take profit and stop loss.mp4 (12.83 MB)
7 -Example 6 Trailing stop loss on long positions.mp4 (15.81 MB)
8 -Example 7 Trailing stop loss on short positions.mp4 (6.78 MB)
9 -Example 8 Trailing stop loss in a trading bot with long and short positions.mp4 (6.52 MB)
1 -Introduction.mp4 (12.61 MB)
2 -Example 1 Log SPY's price at 931 am.mp4 (21.43 MB)
3 -Example 2 Log SPY's price at 915 am (pre-market hours).mp4 (4.26 MB)
4 -Example 3 Log SPY's price at market close.mp4 (3.57 MB)
5 -Example 4 Log SPY's price during half-day trading days.mp4 (7.75 MB)
6 -Example 5 Schedule trading logic to run only after 10 am.mp4 (13.97 MB)
7 -Example 6 Only trade between 10 am and 11 am.mp4 (6.86 MB)
8 -Example 7 Collect data during regular hours, trade during after hours.mp4 (29.6 MB)
9 -Example 8 Only trade on Tuesdays and Thursdays.mp4 (9.97 MB)
1 -Introduction.mp4 (2.92 MB)
2 -Example 1 Request historical data for AAPL.mp4 (2.4 MB)
3 -Example 2 Request historical data for multiple assets.mp4 (4 MB)
4 -Example 3 Buy if current price greater than price before start of backtest.mp4 (12.43 MB)
5 -Example 4 Same as example 3 but with daily close prices updated.mp4 (7.04 MB)
6 -Example 5 Same as example 4 but with historical data requests in on data.mp4 (14.84 MB)
7 -Example 6 Buy if current price greater than average of past 10 daily close.mp4 (12.83 MB)
1 -Introduction.mp4 (8.11 MB)
10 -Example 9 Create consolidators for multiple assets.mp4 (10.24 MB)
11 -Example 10 Buy 1 share in consolidated candlestick receiver method.mp4 (13.27 MB)
12 -Example 11 Submit order for symbol of bar received in consolidated receiver.mp4 (5.39 MB)
13 -Example 12 Buy if current price is greater than average of past 10 cons close.mp4 (9.94 MB)
14 -Example 13 Warm up consolidators of multiple assets.mp4 (18.23 MB)
15 -Example 14 Multiple assets with multiple consolidated periods.mp4 (18.79 MB)
16 -Example 15 Prevent orders from being submitted in initialize (during warm up).mp4 (7.47 MB)
2 -Example 1 Create 5-minute candlesticks for AAPL.mp4 (23.73 MB)
3 -Example 2 Entry orders in consolidated candlestick receiver and on data.mp4 (10.55 MB)
4 -Example 3 Buy if current price is greater than average of past 10 5-min close.mp4 (18.61 MB)
5 -Example 4 Create consolidated candlesticks with historical data.mp4 (37.1 MB)
6 -Example 5 3 consolidated periods.mp4 (6.93 MB)
7 -Example 6 Example 5 with trading logic.mp4 (18.86 MB)
8 -Example 7 Warm up consolidators from example 6.mp4 (12.59 MB)
9 -Example 8 Same as example 7 but with different warm up resolutions.mp4 (23.6 MB)
1 -Introduction.mp4 (38.3 MB)
10 -Example 9 Warm up MACD.mp4 (11.81 MB)
11 -Example 10 Warm up MACD that's calculated with high prices.mp4 (4.24 MB)
12 -Example 11 Warm up ATR.mp4 (6.62 MB)
13 -Example 12 Warm up OBV.mp4 (5.85 MB)
14 -Example 13 Warm up MACD and RSI.mp4 (6.61 MB)
15 -Example 14 Warm up MACD, RSI and ATR.mp4 (5.24 MB)
16 -Example 15 Warm up MACD, RSI, ATR and OBV.mp4 (6.68 MB)
17 -Example 16 Initialize and warm up MACD for multiple assets.mp4 (10.51 MB)
18 -Example 17 Initialize and warm up MACD and ATR for multiple assets.mp4 (8.77 MB)
19 -Example 18 Initialize and warm up MACD, ATR and OBV for multiple assets.mp4 (16 MB)
2 -Example 1 Initialize MACD indicator.mp4 (29.21 MB)
20 -Example 19 MACD trading strategy.mp4 (40.76 MB)
21 -Example 20 MACD and RSI trading strategy.mp4 (10.55 MB)
22 -Example 21 MACD and RSI trading strategy for multiple assets.mp4 (13.59 MB)
23 -Example 22 Update MACD with 5-minute candlesticks.mp4 (24.02 MB)
24 -Example 23 Update MACD and RSI with 5-minute candlesticks.mp4 (7.05 MB)
25 -Example 24 Update MACD with 5min bars and ATR with 4hour bars.mp4 (8.89 MB)
26 -Example 25 Same as example 24 but with multiple assets.mp4 (24.18 MB)
27 -Example 26 MACD updated with property prices.mp4 (60.35 MB)
3 -Example 2 Initialize RSI indicator.mp4 (8.05 MB)
4 -Example 3 Initialize ATR indicator.mp4 (5.95 MB)
5 -Example 4 Initialize OBV indicator.mp4 (6.76 MB)
6 -Example 5 Input moving average type setting for MACD.mp4 (13.94 MB)
7 -Example 6 Input moving average type setting for RSI.mp4 (10.59 MB)
8 -Example 7 Update MACD with high prices instead of close prices.mp4 (22.94 MB)
9 -Example 8 Update BB (Bollinger Bands) with median instead of close prices.mp4 (15.68 MB)
1 -Introduction.mp4 (69.24 MB)
10 -Example 9 Ensure that AAPL, TSLA and SPY get filtered down.mp4 (15.55 MB)
11 -Example 10 Adjust universe settings.mp4 (12.92 MB)
12 -Example 11 Schedule universe selection to happen only on Sunday.mp4 (25.61 MB)
13 -Example 12 Universe selection with trading logic.mp4 (37.55 MB)
14 -Important things to remember about universe selection.mp4 (12.16 MB)
2 -Example 1 Filter down penny stocks.mp4 (81.01 MB)
3 -Example 2 Filter stocks of companies that operate in the semiconductor industry.mp4 (48.08 MB)
4 -Example 3 Filter based on revenue growth.mp4 (18.63 MB)
5 -Example 4 Filter top 5 companies in terms of revenue growth.mp4 (39.07 MB)
6 -Example 5 Filter stocks (current daily closing $ daily closing $ 15 days ago).mp4 (29.99 MB)
7 -Example 6 Using 200-EMA to filter stocks.mp4 (14.63 MB)
8 -Example 7 Create SMA indicators for stocks entering the trading bot.mp4 (31.77 MB)
9 -Example 8 Updating indicators with consolidated data.mp4 (32 MB)
1 -Introduction.mp4 (24.86 MB)
2 -Example 1 Tiingo news with 1 stock.mp4 (105.42 MB)
3 -Example 2 Tiingo news with universe selection.mp4 (67.59 MB)
1 -Introduction.mp4 (15.57 MB)
2 -Example 1 Momentum trading strategy.mp4 (130.01 MB)
1 -Introduction.mp4 (28.19 MB)
2 -My recommendation.mp4 (2.28 MB)
1 -Introduction.mp4 (740.36 KB)
2 -Tips.mp4 (5.37 MB)
3 -Common mistakes.mp4 (12.87 MB)
1 -Introduction.mp4 (4.79 MB)
2 -Quick example of how to use variables to perform mathematical operations.mp4 (4.52 MB)
3 -Important notes about variables and how to use them.mp4 (30.04 MB)
1 -Introduction.mp4 (21.24 MB)
2 -Launch a trading bot for live trading.mp4 (54.81 MB)
1 -Introduction.mp4 (4.67 MB)
2 -Example 1 Send email and sms notifications when order submitted.mp4 (11.02 MB)
1 -Introduction.mp4 (1.83 MB)
2 -Important points about Interactive Brokers.mp4 (36.88 MB)
3 -Conclusion.mp4 (1.7 MB)
1 -Introduction.mp4 (59.29 MB)
10 -Example 9 Trading longer expiry options.mp4 (59.04 MB)
11 -Example 10 Selling option contracts.mp4 (96.59 MB)
12 -Example 11 Launching an options trading bot with IBKR.mp4 (89.36 MB)
13 -Example 12 Filter only call options.mp4 (13.85 MB)
2 -Example 1 Request for options.mp4 (56.06 MB)
3 -Example 2 Filter option contracts.mp4 (87.71 MB)
4 -Example 3 Access attributes of individual option contracts.mp4 (92.22 MB)
5 -Example 4 Working with options of multiple stocksETFs.mp4 (39.35 MB)
6 -Example 5 Trading options based on MACD crossover of underlying.mp4 (81.93 MB)
7 -Example 6 Stop trading and liquidate all positions at 355 PM.mp4 (37.69 MB)
8 -Example 7 Position sizing for options.mp4 (14.52 MB)
9 -Example 8 Take profit and stop loss.mp4 (14.63 MB)
1 -Introduction.mp4 (292.39 MB)
1 -Introduction.mp4 (7.68 MB)
2 -Example 1 Print "Hello world!" from a variable.mp4 (6.65 MB)
3 -Example 2 Print "Hello world!" directly.mp4 (5.84 MB)
4 -Upsides and downsides of print function.mp4 (17.97 MB)
5 -Important note about spaces.mp4 (9.34 MB)
1 -Introduction.mp4 (822.11 KB)
10 -Example 8 Converting float string to float.mp4 (6.58 MB)
11 -Example 9 len() function.mp4 (23.91 MB)
12 -Example 10 Index first character from string.mp4 (17.27 MB)
13 -Example 11 Index last character from string.mp4 (7.93 MB)
14 -Example 12 Index fourth character from string.mp4 (3 MB)
15 -Example 13 Index fourth to last character from string.mp4 (5.91 MB)
16 -Example 14 Index a character that does not exist.mp4 (6.29 MB)
17 -Example 15 Slice a string without its first character.mp4 (19.93 MB)
18 -Example 16 Slice a string without its last character.mp4 (6.48 MB)
19 -Example 17 Slice a string without its first and last character.mp4 (3.18 MB)
2 -What are methods in relation to functions.mp4 (14.18 MB)
20 -Example 18 Same as example 17 but with steps of 2.mp4 (5.45 MB)
21 -Example 19 Slicing the first 4 characters of a string.mp4 (4.52 MB)
22 -Example 20 Slice a string from the 4th to last index onward.mp4 (2.4 MB)
23 -Example 21 Slicing indexes that are not in the string.mp4 (6.59 MB)
3 -Example 1 lower() method.mp4 (4.86 MB)
4 -Example 2 upper() method.mp4 (2.92 MB)
5 -Example 3 Adding strings.mp4 (8.23 MB)
6 -Example 4 Multiplying strings.mp4 (6.91 MB)
7 -Example 5 Replacing strings after mathematical operation.mp4 (14.31 MB)
8 -Example 6 Compounding strings.mp4 (19.97 MB)
9 -Example 7 Converting integer string to integer.mp4 (8.32 MB)
1 -Introduction.mp4 (4.24 MB)
10 -Example 9 Compound with divisions.mp4 (2.32 MB)
11 -Example 10 Compound with exponent.mp4 (5.23 MB)
12 -Example 11 Compound with modulo.mp4 (2.25 MB)
13 -Example 12 Compound with floor division.mp4 (1.93 MB)
14 -Example 13 Shortcut to compounding.mp4 (4.24 MB)
15 -Example 14 Convert integer or float into a string.mp4 (7.74 MB)
16 -Example 15 Convert integerfloat into a string and add it to another string.mp4 (8.31 MB)
17 -Example 16 Convert float to integer.mp4 (2.93 MB)
18 -Example 17 Convert integer to float.mp4 (4.37 MB)
19 -Example 18 Getting the absolute value of an integer or float.mp4 (4.77 MB)
2 -Example 1 10 % 3.mp4 (11.59 MB)
20 -Example 19 Multiplying an integer with a float.mp4 (1.56 MB)
21 -Example 20 Multiplying an integer with an integer.mp4 (793.7 KB)
22 -Example 21 Multiplying a float with a float.mp4 (3.58 MB)
23 -Operator precedence.mp4 (14.48 MB)
3 -Example 2 17 % 7.mp4 (5.19 MB)
4 -Example 3 21 % 8.mp4 (3.03 MB)
5 -Example 4 10 3.mp4 (3.89 MB)
6 -Example 5 18 5.mp4 (1.75 MB)
7 -Example 6 Compound with addition.mp4 (4.53 MB)
8 -Example 7 Compound with subtractions.mp4 (2.77 MB)
9 -Example 8 Compound with multiplications.mp4 (1.34 MB)
1 -Introduction.mp4 (8.45 MB)
10 -Example 7 if elif.mp4 (7.44 MB)
11 -Example 8 if elif statements but both return False.mp4 (4.1 MB)
12 -Example 9 Multiple elif statements following an if statement.mp4 (3.63 MB)
13 -Example 10 Multiple elif statements following an if statement but.mp4 (4.64 MB)
14 -Example 11 if.elif.else.mp4 (4.65 MB)
15 -Example 12 Adding an and operator to an if statement.mp4 (14.26 MB)
16 -Example 13 Adding an or operator to an if statement.mp4 (6.81 MB)
17 -Example 14 and and or operators within 1 if statement.mp4 (14.82 MB)
18 -Example 15 pass statement after if statement.mp4 (11.01 MB)
2 -Example 1 Check if integer 10 is greater than integer 5.mp4 (7.55 MB)
3 -Important information about indentations.mp4 (15.29 MB)
4 -Important information about conditional statements.mp4 (11.37 MB)
5 -Example 2 Single nested if statement.mp4 (8.5 MB)
6 -Example 3 Multiple nested if statements.mp4 (3.98 MB)
7 -Example 4 Line after multiple nested if statements.mp4 (3.65 MB)
8 -Example 5 if else.mp4 (6.22 MB)
9 -Example 6 if.else statements nested within another.mp4 (2.61 MB)
1 -Introduction.mp4 (2.41 MB)
2 -Example 1 if.elif.else statements with comments.mp4 (7.16 MB)
3 -Example 2 Using the # symbol to comment out code for debugging.mp4 (24.54 MB)]
Screenshot
FNHOWaNH_o.jpg


RapidGator
TurboBit
 

Feel free to post your The Complete Python Trading Bot Bootcamp 2024 Edition Free Download, torrent, subtitles, free download, quality, NFO, Dangerous The Complete Python Trading Bot Bootcamp 2024 Edition Torrent Download, free premium downloads movie, game, mp3 download, crack, serial, keygen.

Top