Welcome back to Day 4 of 100 Days of Hell with Python Algo Trading! Today, we’ll dive deep into Python lists, a crucial data structure for quantitative traders. We’ll compare lists with arrays, explore their characteristics, and implement crypto trading strategies using lists. Plus, we’ll discuss memory storage, advantages, and disadvantages of lists in quantitative analysis for trading in Singapore. Let’s get started!
I have few important updates so let me explain them one by one the first update is the mcqs are very very important we have researched and curated all of those questions very diligently so if you attempt those you will feel that you are having much more better understanding of the topic and if you really want to learn fast and quick you have to attempt those questions it will not cost you anything second is Task all the task questions also researched similarly as mcqs and we have also included python mini projects for each and every topic so you can think the process which we have discussed in the first introduction video right the process is three-stage process first we are learning and then you are applying that knowledge at three places.
MCQS python task and then mini project so it will cement that task in your brain for Generations now the Discord and telegram so it’s not mandatory if you have questions if you have any queries you can come and you can ask us okay we’ll try our best to resolve your all queries but it’s not mandatory for you to come and join it’s just a community so where we can discuss and we can resolve our issues okay you just have to focus on your learning that’s it then we have the fourth that is doubt clearing session for that if you really have some doubts you can let us know in the Des Discord or Telegram and accordingly.



We will create some sessions on weekends okay or we can have some live sessions also so we can plan that in future so that was quick update now let’s quickly move to the python list okay so in this session first we will cover the introduction then we’ll compare the list with the arrays and then we will see how lists are stored in the memory right then the characteristics of python list and then we will see some examples with all the operations and last but not the least least disadvantages of the Python list okay so now we quickly understand.
What are the list so list is a data type where you can store multiple items under one name okay I’ll just quickly explain how then more technically list act like Dynamic arrays which means you can add more items on the Fly then we’ll understand why lists are required in programming okay so let’s create an example of list so let’s say we have a list which contains the details of any trade so we will name it as trade logs okay this is hyphen so in that list we have let’s say the opening price then a string so the name of the stock Apple correct then we can say the selling price okay so it could be 11.6 which is a flot and then let’s say we have a Boolean value so which can be true right for example.
If the buy was true or false so it can be true so this is integer this is string this is float and this is aoan value and this list is able to store all those data types right so which makes it so flexible and so adaptable okay now let’s compare the list with arrays so let’s say we create a table okay so the first is for arrays and this is for the list okay then now let’s compare it okay so the first point is fixed versus Dynamic why because when we create an array so how do we do that we have to give the size beforehand for example.
Let’s say you are creating an array of int and the size is 50 so here you have to mention that we will be creating an array with the size 50 means it is fixed correct we can say it is fixed but in list you don’t have to do that you can create an empty list or you can create a list which consists multiple values there is no restriction like that then the second point is the arrays are homogeneous means these can store only one data type so here we know that this is integer if we want an array with a string values then we have to create another array similarly for float and so on so forth so means these are homogeneous the second difference is these are homogeneous.
Watch this Day 4 video tutorial
Day 4: Python Lists