read -p “Give me some data: ” user_data
echo $user_data
echo $user_data | cut -d ‘ ‘ -f 1,3
Nov 22
What Is the Efficient Market Hypothesis (EMH)?
The efficient market hypothesis (EMH), alternatively known as the efficient market theory, is a hypothesis that states that share prices reflect all available information and consistent alpha generation is impossible.
According to the EMH, stocks always trade at their fair value on exchanges, making it impossible for investors to purchase undervalued stocks or sell stocks for inflated prices.
Therefore, it should be impossible to outperform the overall market through expert stock selection or market timing, and the only way an investor can obtain higher returns is by purchasing riskier investments.”
Ref: https://www.investopedia.com/terms/e/efficientmarkethypothesis.asp
“Opponents of EMH believe that it is possible to beat the market and that stocks can deviate from their fair market values.” [2]
We predict stocks using
Usually: Proper selection of
Stocks and Time Intervals
Statistics
Machine Learning
This paper goes beyond and Uses
Spatio-Temporal Relationship
among stocks
Graph theory
Nov 17
Solution that worked for the issue: Your current session has been expired. for Magento2
cat shell-scripts/temp.sh
# fix misc issues, can be routine
sudo php bin/magento maintenance:enable
#sudo rm -rf var/cache/
#sudo rm -rf generated/
sudo chmod +x bin/magento
sudo php bin/magento setup:upgrade
#sudo php bin/magento setup:static-content:deploy -f
sudo php bin/magento setup:di:compile
sudo php bin/magento indexer:reindex
sudo php bin/magento cache:clean
sudo php bin/magento cache:flush
sudo php bin/magento setup:static-content:deploy -f
sudo php bin/magento maintenance:disable
#Then adjust permissions for var
did not solve:
INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`)
VALUES ('default', 0, 'admin/security/session_lifetime', '86400');
Tried but did not help
Go to : admin_user_session
table in MySql Set created_at
column to ‘0’ and updated_at
column to ‘CURRENT_TIMESTAMP’ as it is.
Oct 06
Sep 29