Five year stock price analysis of top 7 companies in the world.
FMD provides one of the most accurate financial data available on the market.
You can get
historical prices, fundamental data, insider transactions, and much more that goes back
30 years in history.
DCF Analysis on Magnificent 7 stocks using FMD API
Margin, ROIC Analysis on Magnificent 7 stocks using FMD API
Using FinViz API
K-Means Clustering is an Unsupervised Machine Learning algorithm, which groups the
unlabeled dataset into different clusters.
Using matplotlib to create the plots, visualize data to identify each plot with a different color which should be automatically generated by Python
Bubble sort is a simple sorting algorithm that repeatedly compares adjacent elements in a list, swapping them if they are in the wrong order, effectively causing larger elements to "bubble up" to the top of the list until the entire list is sorted; it's considered a basic sorting method due to its straightforward approach but can be inefficient for large datasets due to its time complexity of O(n^2).
The Insertion Sort algorithm uses one part of the array to hold the sorted
values, and the other part of the array to hold values that are not sorted yet.it's considered
a basic sorting method due to its straightforward approach but
can be inefficient for large datasets due to its time complexity of O(n^2).
1. Take the first value from the unsorted part of the array.
2. Move the value into the correct place in the sorted part of the array.
3. Go through the unsorted part of the array again as many times as there are values.
Below shows how to use LaTex library using a simple Fibonacci series.
Recursive call.
Also shows exception handling and continous loop.
Lambda Examples
Map of San Francisco using local coordinates.
Using colorama we can have colorful console output.
Using numpy and colorama.
Given an input string s and a pattern p, implement regular expression
No preferences but I like 2nd approach of timeit.timeit(name_of_func,number=times) approach better
as this allows to call function multiple times.
Approach 1
Approach 2
Approach 3
Python offers a powerful library called dnspython to work with DNS records.
Here's how you can use it to resolve DNS records:
Without using inbuilt sort functon, sort a list of O's, 1's, and 2's.
Given an array nums with n objects colored red, white, or blue,
sort
them in-place so that objects of the same color are adjacent,
with the colors
in the order red, white, and blue.
We will use the integers 0, 1, and 2 to represent the color red, white, and
blue,
respectively. You must solve this problem without using the
library's sort function.
Example 1:
Input: nums = [2,0,2,1,1,0]
Output: [0,0,1,1,2,2]
Example 2:
Input: nums = [2,0,1]
Output: [0,1,2]
input_array.sort() is not allowed
Given an integer n, return true if it is a power of two. Otherwise, return false.
An integer n is a power of two, if there exists an integer x such that n == 2x.
Input: n = 1, Output: true
Input: n = 16, Output: true
Input: n = 3, Output: false
Constraints: -231 <= n <= 231 - 1
Problem : Implement an algorithm to determine if a string has all unique
characters. What if you cannot use additional data structures?
Input : "abcde", Output : True
Input : "hello", Output : False
Constraint : Assuming character set is ASCII (128 characters)
Complexity : O(n) where n is length of string, Space O(1), where n <= 128,
Problem : Removes elements from a list that are less than the list's mean.
AryaFin Engine© - An AI FinTech Venture - 2024-25 Disclaimer