Share one of the scraped URL's but what I assume is the problem is that financial juice is not giving you the direct url but one with redirection. So basically this is a link on front page
https://www.financialjuice.com/News/3772381/A-week-end-of-decision-for-Germany.aspx
which loads rthen redirects to
http://www.forexlive.com/news/!/a-week-end-of-decision-for-germany-20171118
Helps them keep track of which links were visited from outside the website (social media sharing etc) and prevent exactly what you have done.
You will need to run a script to visit the link and then get the url after the last redirection.
for example using urllib2. The geturl gives you the final url of the opened object.
finalurl = urllib2.urlopen(intialurl, None, 1).geturl()
If the redirecction is with a script then you need to use Selenium. See here for a good example. I modified the below code for you and it worked quite well
from selenium import webdriver
import time
from selenium.webdriver.common.keys import Keys
chromepath='/usr/bin/chromedriver' #//change this to your chromedriver path
driver = webdriver.Chrome(chromepath)
driver.get('https://www.financialjuice.com/News/3772381/A-week-end-of-decision-for-Germany.aspx')
time.sleep(10)
print(driver.current_url)
driver.quit()