GOOGLEFINANCE: Finding a defined price for a stock at a certain date (whenever that defined price was reached) and returning it to a cell - google-finance-api

Thanks for reading this - I'm a beginner with google sheets and hope you can help me finding a solution to my little problem! Here it comes: I want to extract the (historic) date from GOOGLEFINANCE when a stock price has hit a certain price. Example: Say I know a share was worth $ 10 on December 15, 2008 and it hit a low of $ 5 on March 20, 2009. I want to know how long it took that stock before it came back to $ 10 and would like to get the output (date) in a defined cell. Is there a function or combination of functions I can use? (Besides a few macro editings I have no experience in scripting/programming with google sheets...). Any help is highly appreciated! Thanks much in advance! RJ

Related

price rate of change over 12 periods using padas dataframe

dears
I want to calculate the price rate of change by dividing the today's price with price 12 periods ago
"df.close" is the my data where I want to calculate the rate of change.
please guide me
I was unable to try anything because I felt it is the window of 12 days but not a continuous window
I see some similar replies but those are some big codes not relevant to me. I simply need one line to call the price 12 days ago and divide it
thank you.

Bitcoin arbitrage collection formula

https://cryptorank.io/price/bitcoin/arbitrage
I am working on displaying the various currencies like Bitcoin arbitrage URL shared above.
There are number of the records with +9.53%, +7.7% against the other currencies. I tried hard to find out the formulae for this calculation but I was unable to do this.
I asked this question if anyone worked on this type of the problem before might helpful for me to get the idea on this.
Looking forward for your suggestions!
The percentages as shown on this page are calculated based on the exchange rates of the row and column (i.e. of different exchanges):
1 - (exchangeRateOfRow / exchangeRateOfColumn)
E.g. the 11.5% in the first cell of your screenshot:
1 - (19,536 / 22,069) = 0.115 = 11.5%
I don't want to make any statement about whether these are real arbitrage opportunities.

On google sheet, I'm trying to have a responsive number related with today's date

I have a revenue to reach monthly. Ex:100'000 until the end of the month
I would like to have "today's goal to reach" in a cell as information.
It should take into account our actual date (how many days left until the end of the month) And it should take into account how much revenue we reached so far.
Is this possible?
I'm trying to find some information about "how to" online, but since I'm no expert in google sheet yet, I would love to have little help from any of you.
see:
=(B1-B4)/DAYS(EOMONTH(TODAY(), ), TODAY())
or more precise:

Calculating Capacity in Rally

Can anyone explain to me how to calculate your capacity in Rally. I am new to Rally and I am trying to figure out how most of the functions work.
There is a capacity column next to each developer with a pencil where you can type in your capacity. I am assuming it's number of working days in the Sprint * hours of work you are currently assigned or some sort.
Any help is appreciated!
Thanks
Yes, that is correct.
The capacity you find on the Track->Team Status per person is the number of available hours in the selected iteration.
What you need to decide is, how many "productive" hours do each person have per work day.
You can find the help documentation here: https://help.rallydev.com/view-team-member-capacity

How to shift "Date Created" property of a file by a given number of days and hours?

I am looking for a solution how to change file's property "Date Created". Preferably in VBA since it is the only programming language I more or less able to code with.
I have hundreds of photos taken from my last vacations. And I have noticed that date in my camera settings is wrong. It is set to be December 2014. So the real date on all pictures is shifted back by 216 days, 16 hours and 25 minutes.
How can I possibly open all pictures in a given directory one by one and change "Date Created" property by given number of days and hours? Any hints, please?
There are freeware tools that can help you with this task, but if you want to do it for fun, you can achive this by importing SetFileTime in your VBA code and then call it for each file in your directory.
To get started, you can find an example here