Пікірлер
@DeepCharts
@DeepCharts 4 күн бұрын
You can install sci-kit ollama through pip: pip install scikit-ollama
@checkgood9895
@checkgood9895 4 күн бұрын
pip install skollama --> no such package?
@DeepCharts
@DeepCharts 4 күн бұрын
You're right, and thanks for sharing. It is actually: pip install scikit-ollama
@thangkhong3536
@thangkhong3536 5 күн бұрын
great, super easy and useful!
@DeepCharts
@DeepCharts 5 күн бұрын
thanks!
@shailendrakaushik9281
@shailendrakaushik9281 7 күн бұрын
Excellent work! Keep it up
@yogimaharaj2587
@yogimaharaj2587 9 күн бұрын
# Sorting index index_range: pd.RangeIndex = pd.RangeIndex(start=1, stop=len(result) + 1, step=1) result.index = index_range print(result) Quantity Price Total 1 20 250 5000 2 15 150 2250 3 10 200 2000
@lucasmrancez
@lucasmrancez 15 күн бұрын
Thanks for sharing! but you may be incorrectly looking for direct corrections between indicator and stock closing prices. As I understand, indicator usually work as a guidance, sometimes even a visual guidance, to help find trends, or more importantly, trend changes. I would be interested if you could finding the correlation between indicators and the highest high or the lowest low of a trend, or to the derived closing price, for example.
@DeepCharts
@DeepCharts 14 күн бұрын
Thanks for the comment. While indicators are often used for trend detection, this analysis tests their predictive value for next-day closing prices to evaluate their utility in forecasting. Moving averages are commonly used as direct predictors in ML time series models, but other indicators are less frequently examined this way, which is why we’re testing them here. The shared GitHub code in the video description can be modified to test alternative hypotheses, including different predictive time horizons and relationships to highest highs or lowest lows.
@SkySesshomaru
@SkySesshomaru 17 күн бұрын
Awesome.
@DeepCharts
@DeepCharts 16 күн бұрын
Thanks!
@atrigupta8929
@atrigupta8929 18 күн бұрын
Will you upload the code in Github.........
@DeepCharts
@DeepCharts 10 күн бұрын
Posted now!
@sushilgangavati7299
@sushilgangavati7299 18 күн бұрын
Great video. I'm Getting an error at data = add_technical_indicators(data) line Data must be 1-dimensional, got ndarray of shape (369, 1) instead. Can u please help solve this
@thefullstackninja121
@thefullstackninja121 19 күн бұрын
Cool video.
@sMadaras
@sMadaras 22 күн бұрын
Your codes would be very useful for deeper study. Are you considering uploading them to your github?
@DeepCharts
@DeepCharts 22 күн бұрын
Thanks for the message. The github link is now available in the video description.
@sMadaras
@sMadaras 21 күн бұрын
@@DeepCharts thanks for the upload, it helps a lot. One more thing: you have clear teaching skills, it’s quite rare among youtubers.
@DeepCharts
@DeepCharts 21 күн бұрын
Thanks, the goal of the channel is to be direct and to the point!
@StormWolf01
@StormWolf01 23 күн бұрын
Great video, but a tiny bit short. I would have been fine if it was 20 min long video.
@DeepCharts
@DeepCharts 22 күн бұрын
Good to know!
@pleabargain
@pleabargain 24 күн бұрын
Gist? Gitbub? Where's the code?
@DeepCharts
@DeepCharts 22 күн бұрын
Thanks for the message! The code is now up in the video description
@GustavoO64
@GustavoO64 25 күн бұрын
Nice, It's a good start
@ThaerFAli
@ThaerFAli 26 күн бұрын
Good explanation, thank
@ZinTechPro
@ZinTechPro 26 күн бұрын
great video
@Rahman-d6d
@Rahman-d6d 26 күн бұрын
great yutorial. how do you deploy streamlit-python app with .env file (to secure API keys) into Ploomber? thank you
@DeepCharts
@DeepCharts 10 күн бұрын
I believe that Ploomber has a "secrets" tab upon upload where you can securely place hidden API keys
@shyamsundarsaikia
@shyamsundarsaikia 28 күн бұрын
Nice Explanation
@DeepCharts
@DeepCharts 28 күн бұрын
Thanks!
@THE_PKT
@THE_PKT Ай бұрын
UnicodeEncodeError: 'ascii' codec can't encode character '\u0399' in position 44: ordinal not in range(128) this is the error I am getting. But when I checked the fred.py file, there is no such function that checks ASCII code. So what should I do now?
@xtrmotors4135
@xtrmotors4135 Ай бұрын
Been looking for this for a long time. Great content! - would you be able to make a tutorial of how to make an app like this but for mobile? like a personal apk app instead of paying for subscriptions to other commercial apps - something to train your own pictures perhaps. - that wold be cool
@DeepCharts
@DeepCharts Ай бұрын
You could host this app on the Streamlit community cloud for free and access it on your phone. The necessary change you would need to make is to add an input box for your Replicate API token instead of keeping it as a secret variable, so random internet passerby's won't spend your money. Also, check out the channel in a few weeks, I might have an answer for the end of your question.
@salsabilafauziah3542
@salsabilafauziah3542 Ай бұрын
please dont delete this video i really need this:(
@DeepCharts
@DeepCharts Ай бұрын
I won't! Glad you enjoyed it!
@DanielDiggens-cf3fy
@DanielDiggens-cf3fy 2 ай бұрын
Nice demo! I am trying it out but can't figure out syntax error I get on # Display main metrics st.metric(label=f"{ticker} Last Price", value=f"{last_close:.2f} USD", delta f"{change:.2f} ({pct_change:.2f}%)") Script execution error File "/mnt/c/Users/data1/utm/markets/yf_dashboard.py", line 92 st.metric(label=f"{ticker} Last Price", value=f"{last_close:.2f} USD", delta f"{change:.2f} ({pct_change:.2f}%)") ^ SyntaxError: positional argument follows keyword argument
@gabrielfernandez4334
@gabrielfernandez4334 Ай бұрын
delta f"{change:.2f}, change it for: delta=f"{change:.2f}
@macaco727
@macaco727 2 ай бұрын
Excellent video!! Just a question, I see that the hexagons in which we have recorded measurements are obtained. If I wanted to see all the hexagons of a metropolitan city like NY, is there a way to see the complete hexagonization of the city?
@clementndome9260
@clementndome9260 2 ай бұрын
nice video
@DeepCharts
@DeepCharts 2 ай бұрын
Thanks, glad you enjoyed it!
@taikoktsui_sithlord
@taikoktsui_sithlord 2 ай бұрын
Nice one!
@DeepCharts
@DeepCharts 2 ай бұрын
Thanks!
@j1351209
@j1351209 2 ай бұрын
so many similar frameworks:fasthtml,reflex,solara,streamlet...
@DeepCharts
@DeepCharts Ай бұрын
So many to potentially learn, but I think each has its strengths for different purposes.
@havokzeroz3256
@havokzeroz3256 2 ай бұрын
Nice thank you for this.
@DeepCharts
@DeepCharts 2 ай бұрын
Glad you liked it!
@k_celebs__
@k_celebs__ 2 ай бұрын
Thanks for the video
@DeepCharts
@DeepCharts 2 ай бұрын
Glad you enjoyed it!
@theexposer9483
@theexposer9483 2 ай бұрын
To the point video, keep the good work. Request you to suggest how to read stocks data from a web socket and use in creating live chart from that live fed in Streamlit.
@DeepCharts
@DeepCharts 2 ай бұрын
Glad you enjoyed it! Great suggestion!
@radishark8449
@radishark8449 2 ай бұрын
awsome , thanks for sharing this code with us
@DeepCharts
@DeepCharts 2 ай бұрын
Glad you find it helpful!
@brooklyn_domino
@brooklyn_domino 2 ай бұрын
How are you deploying the app on Streamlit? I keep getting this error: "ConnectionError: HTTPConnectionPool(host='0.0.0.0', port=11434): Max retries exceeded with url". I've tried changing the server address from 127.0.0.1 to 0.0.0.0. I've restarted the server, changed the base_url but nothing seems to work. I'm missing some trick here. Do I need to make sure that the ollama server is running on the local system when executing the web app? Because for some reason when I run the program locally from vscode it works.
@cheongyiksheng1396
@cheongyiksheng1396 2 ай бұрын
me too
@brooklyn_domino
@brooklyn_domino 2 ай бұрын
Great video! Please keep uploading more videos.
@DeepCharts
@DeepCharts 2 ай бұрын
Thanks! And good day to request this since I'll be posting a new one soon.
@emergency_rw
@emergency_rw 2 ай бұрын
This is really perfect; you can try 3D h3 to geo visualisation if it exist?
@AllMostViewedVideos
@AllMostViewedVideos 3 ай бұрын
Hi could you share another link for the downloading the data file as current one doesn't work. Great video. Loved it❤
@jonathanmitchell5171
@jonathanmitchell5171 3 ай бұрын
Appreciate an AI finance video that focuses on handling/ presenting data as information rather than placing trades. I work a salary job with family and i just dont have the time to proper DD and sometimes my subscriptions go unused for a month or so. I am looking to integrate local AI into my strategy by helping make sense of web articles, reports, and analysts sentiments/ratings. Presenting this data in a manageable format in real time. I am on AMD system so Pytorch makes sense? If use this as template to learn on am I on the right track?
@DeepCharts
@DeepCharts 10 күн бұрын
Pytorch is a great choice. What I've presented here is just an example workflow and methodology. I would test different LLM models for sentiment tasks and different methodologies for turning sentiment into quantitative measures to feed a more comprehensive model. Always make sure to validate your AI measures, as well as your quant finance models, more generally.
@albertkim1809
@albertkim1809 3 ай бұрын
thank you for the extremely clear tutorial, showing things one by one, and not jumping around from screen to screen. loved this style
@DeepCharts
@DeepCharts 3 ай бұрын
Thanks. Glad you liked it!
@ogrekogrek
@ogrekogrek 4 ай бұрын
Wow It is great!!!
@DeepCharts
@DeepCharts 3 ай бұрын
Thank you!
@emanuelgerber
@emanuelgerber 4 ай бұрын
Thanks for your video!
@DeepCharts
@DeepCharts 3 ай бұрын
Glad it was helpful!
@kinhangto4490
@kinhangto4490 4 ай бұрын
Sounds promising!
@DeepCharts
@DeepCharts 3 ай бұрын
It absolutely is!
@DmitryPonomareF
@DmitryPonomareF 4 ай бұрын
Solara cool framework! Thanks!
@DeepCharts
@DeepCharts 3 ай бұрын
Glad you like it!
@lexwillis55
@lexwillis55 4 ай бұрын
this worked flawlessly. thank you!!
@DeepCharts
@DeepCharts 4 ай бұрын
Great to hear!
@hoangthang7476
@hoangthang7476 4 ай бұрын
Can i use kriging to interpolate air quality from coordinates and population?
@DeepCharts
@DeepCharts 4 ай бұрын
Coordinates: yes, as long as you have measures of air quality for specific coordinates. Population: no. Population density is often correlated with air quality levels, but kriging doesn't use auxiliary data.
@hoangthang7476
@hoangthang7476 4 ай бұрын
@@DeepCharts Do you know which models use auxiliary variables?
@BitCuration
@BitCuration 4 ай бұрын
@DeepCharts, do you have your code in github or a way to download? Would like to prototype based on this video. Nice works.
@DeepCharts
@DeepCharts 4 ай бұрын
Thanks! Posted now!
@osmanniazi7888
@osmanniazi7888 4 ай бұрын
Not a bad intro at all. I am an ex Goldman Sachs Quant. I dont know how youtube got me here :-). But I think this is good for someone new to Quant finance and machine learning. Yes someone needs to think deeply about the pricing but this is a good starting point to know how to use these tools.
@DeepCharts
@DeepCharts 4 ай бұрын
Thanks! That was the goal.
@jonathanmitchell5171
@jonathanmitchell5171 3 ай бұрын
Not going to repeat my other comment but any other suggestions for a Business major looking to create such a tool. I dont fit in the quant nor the algo community as I just want information relevant to my trading theory, if that makes sense. Less interested in price prediction. I fear the "it works until it doesnt". Dont know what i dont know but it took months to decide what language to start learning.
@Charles-m7j
@Charles-m7j 4 ай бұрын
Yeah so that is not how the stock market works.
@DeepCharts
@DeepCharts 4 ай бұрын
Not sure if you watched the video or even read the description. I pretty clearly mention that there are a lot more drivers of stock prices and that this tutorial is just about how to create an LLM workflow that could be used to predict stock prices if more consideration were put into the predictors and the final time series model.
@Charles-m7j
@Charles-m7j 4 ай бұрын
@@DeepCharts Right. That is great. It is just profoundly naive to think that it is useful in any way.
@dengaz4099
@dengaz4099 5 ай бұрын
its become so rare on this platform to see a short and simple video with good info and more content in bite sizes
@DeepCharts
@DeepCharts 5 ай бұрын
Thank you! More bite-sized geospatial and data science tutorials are on their way.
@ryzvonusef
@ryzvonusef 5 ай бұрын
That's pretty clever!
@DeepCharts
@DeepCharts 3 ай бұрын
Thanks!
@tiffanynem
@tiffanynem 5 ай бұрын
Thanks! This is so helpful